-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.5 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@vtrbo/cli",
"type": "module",
"version": "0.1.0",
"packageManager": "pnpm@8.6.12",
"description": "start project cli.",
"author": {
"name": "Victor Bo",
"email": "hi@vtrbo.cn"
},
"license": "MIT",
"homepage": "https://github.com/vtrbo/cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vtrbo/cli.git"
},
"bugs": {
"url": "https://github.com/vtrbo/cli/issues"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"vtr": "bin/vtr.mjs"
},
"files": [
"dist",
"bin"
],
"scripts": {
"prepublishOnly": "nr build",
"dev": "esno src/index.ts",
"build": "unbuild",
"stub": "unbuild --stub",
"release": "bumpp && npm publish",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@antfu/ni": "^0.21.5",
"@types/inquirer": "^9.0.3",
"@types/node": "^20.4.10",
"@vtrbo/eslint-config": "^0.3.10",
"@vtrbo/utils": "^0.3.6",
"bumpp": "^9.1.1",
"chalk": "^5.3.0",
"commander": "^11.0.0",
"eslint": "^8.47.0",
"esno": "^0.17.0",
"inquirer": "^9.2.10",
"load-repo": "^0.0.1",
"ora": "^7.0.1",
"rimraf": "^5.0.1",
"typescript": "^5.1.6",
"unbuild": "^1.2.1",
"vitest": "^0.34.1"
}
}