-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1019 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 1019 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
42
43
44
45
{
"name": "@cliostack/ui",
"version": "0.9.0",
"description": "",
"publishConfig": {
"access": "public"
},
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsup",
"dev": "tsup --watch",
"pub:release": "npm run build && npm publish"
},
"bin": "./dist/index.js",
"exports": "./dist/index.js",
"files": [
"dist"
],
"author": "Vec",
"license": "ISC",
"dependencies": {
"@antfu/ni": "^0.21.12",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"execa": "^8.0.1",
"ora": "^7.0.1",
"prompts": "^2.4.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@types/prompts": "^2.4.9",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"clsx": "^2.0.0",
"esbuild": "0.19.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^2.2.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"esbuild-plugin-copy": "^2.1.1"
}
}