-
-
Notifications
You must be signed in to change notification settings - Fork 139
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 997 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 997 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": "create-zenstack",
"version": "3.4.3",
"description": "Create a new ZenStack project",
"type": "module",
"scripts": {
"build": "tsc --noEmit && tsup-node",
"lint": "eslint src --ext ts",
"pack": "pnpm pack"
},
"keywords": [],
"author": "ZenStack Team",
"license": "MIT",
"files": [
"dist"
],
"bin": {
"create-zenstack": "bin/cli"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"dependencies": {
"colors": "1.4.0",
"commander": "^8.3.0",
"ora": "^5.4.1"
},
"devDependencies": {
"@zenstackhq/eslint-config": "workspace:*",
"@zenstackhq/typescript-config": "workspace:*"
}
}