-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 823 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 823 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
{
"name": "@lightfastai/climode",
"version": "0.1.0",
"publishConfig": {
"access": "public"
},
"bin": {
"climode": "./dist/bin.mjs"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"scripts": {
"build": "vp pack",
"dev": "vp pack --watch",
"test": "vp test run",
"test:watch": "vp test",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@clack/prompts": "^1.1.0",
"chalk": "^5.4.1",
"chokidar": "^4.0.3",
"commander": "^13.1.0",
"semver": "^7.7.1",
"validate-npm-package-name": "^7.0.2"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/semver": "^7.5.8",
"@types/validate-npm-package-name": "^4.0.2",
"typescript": "^5.7.2",
"vite-plus": "latest"
}
}