-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.13 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.13 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
{
"name": "tpl-node-cli",
"description": "",
"version": "0.0.0",
"main": "./dist/export.js",
"types": "./dist/export.d.ts",
"type": "module",
"license": "MIT",
"bin": {
"x-cli": "./dist/cli.js"
},
"files": [
"dist"
],
"engines": {
"node": ">= 18"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"dev": "tsx dev.ts",
"build": "npm run build:cli && npm run build:lib",
"build:cli": "tsup src/cli.ts --format esm --clean",
"build:lib": "tsup src/export.ts --format esm --dts",
"release": "x-release",
"prepublishOnly": "npm run build",
"test": "vitest --passWithNoTests"
},
"dependencies": {
"@0x-jerry/silver": "1.2.4",
"@0x-jerry/utils": "^6.0.0",
"debug": "^4.4.3",
"picocolors": "^1.1.1",
"prompts": "^2.4.2",
"unconfig": "^7.4.2"
},
"devDependencies": {
"@0x-jerry/x-release": "^2.4.1",
"@types/debug": "^4.1.12",
"@types/node": "^25.0.10",
"@types/prompts": "^2.4.9",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}