-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.46 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.46 KB
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
{
"name": "@nexus/cli",
"version": "1.0.0",
"description": "Nexus Command Line Interface",
"main": "dist/main.js",
"type": "module",
"bin": {
"nexus": "bin/nexus"
},
"scripts": {
"start": "tsx src/main.ts",
"dev": "tsx watch src/main.ts",
"test": "node --loader ts-node/esm node_modules/.bin/jest",
"test:watch": "node --loader ts-node/esm node_modules/.bin/jest --watch",
"build": "tsc --module esnext --outDir dist && node scripts/fix-module-extensions.js dist",
"build:dist": "tsx tools/build.ts",
"release": "npm run test && npm run build:dist",
"generate:man": "tsx tools/generate-man-pages.ts",
"quality": "tsx tools/quality-check.ts",
"release:run": "node --loader tsx/esm tools/release.ts",
"rc1": "npm run build:dist && tsx tools/rc1-certify.ts",
"ga": "npm run build:dist && tsx tools/ga-audit.ts"
},
"keywords": [
"nexus",
"cli",
"command-line",
"terminal"
],
"author": "Nexus Team",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"esbuild": "^0.27.1",
"lint": "^0.8.19",
"prettier": "^3.7.4",
"ts-node": "^10.9.1",
"typescript": "^5.0.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/jest": "^30.0.0",
"@types/node": "^18.0.0",
"@types/uuid": "^10.0.0",
"jest": "^29.0.0",
"pkg": "^5.8.1",
"ts-jest": "^29.4.6",
"tsx": "^3.12.0",
"typescript-transform-paths": "^3.5.5"
}
}