forked from arpitkhandelwal12/ZerithDB
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1007 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1007 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "zerithdb-cli",
"version": "0.2.0",
"description": "ZerithDB CLI — npx zerithdb init",
"license": "Apache-2.0",
"type": "module",
"bin": {
"zerithdb": "./dist/cli.js"
},
"scripts": {
"build": "tsup src/cli.ts --format esm",
"dev": "tsup src/cli.ts --format esm --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run --passWithNoTests",
"lint": "eslint src --ext .ts",
"clean": "rimraf dist"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"execa": "^9.3.1",
"ora": "^8.1.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"zerithdb-eslint-config": "workspace:*",
"zerithdb-tsconfig": "workspace:*",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"@types/prompts": "^2.4.9",
"rimraf": "^6.0.1",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"files": [
"dist",
"templates"
]
}