-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
50 lines (50 loc) · 1.02 KB
/
package.json
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
46
47
48
49
50
{
"name": "create-quantum",
"version": "0.1.0",
"type": "module",
"main": "./lib/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/atilafassina/quantum"
},
"bin": {
"create-quantum": "./bin/run.js"
},
"files": [
"bin/",
"package.json",
"README.md"
],
"scripts": {
"release-it": "release-it",
"build": "tsup",
"test": "vitest",
"dry": "pnpm build && node ./bin/run.js --debug"
},
"author": {
"name": "@AtilaFassina",
"url": "https://atila.io"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"@tauri-apps/cli": "2.0.0-rc.17",
"gradient-string": "^3.0.0"
},
"devDependencies": {
"@release-it/conventional-changelog": "^8.0.2",
"@types/node": "^22.7.4",
"release-it": "^17.6.0",
"release-it-pnpm": "^4.6.3",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vitest": "^2.1.1"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"provenance": "true"
}
}