-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 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
{
"name": "alex-dev-cli",
"version": "0.0.13",
"description": "Alex's private cli tool for development",
"main": "./dist/index.js",
"bin": {
"i": "./dist/cli/install.js",
"p": "./dist/cli/publish.js",
"s": "./dist/cli/start.js",
"b": "./dist/cli/build.js",
"sb": "./dist/cli/sb.js",
"e": "./dist/cli/e2e.js",
"t": "./dist/cli/test.js",
"copen": "./dist/cli/copen.js",
"cbranch": "./dist/cli/cbranch.js",
"branch": "./dist/cli/branch.js"
},
"scripts": {
"start": "npm run build && onchange 'src/**/*.ts' -- npm run build",
"test": "vitest run",
"build": "npm run test && tsc",
"generate": "ts-node ./src/main.ts",
"postinstall": "npm install @antfu/ni -g"
},
"author": "alex",
"license": "ISC",
"devDependencies": {
"@types/mock-fs": "^4.13.1",
"@types/node": "^18.8.4",
"mock-fs": "^5.2.0",
"onchange": "^7.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"vitest": "^0.25.2"
},
"dependencies": {
"@antfu/ni": "^0.18.2"
}
}