-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.02 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.02 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
{
"name": "my-cli-project",
"version": "0.0.0",
"type": "module",
"files": [
"dist"
],
"bin": {
"greet": "dist/greet.js",
"bump": "dist/bump.js"
},
"scripts": {
"format:check": "prettier . --check",
"format:write": "prettier . --write",
"typecheck": "tsc --noEmit",
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "rimraf dist/",
"build": "node scripts/build.mjs",
"postbuild": "pnpm pack --out=examples/.npm-local/my-cli-project.tgz && pnpm run update-examples",
"update-examples": "node scripts/update-examples.mjs",
"status": "pnpm run format:check && pnpm run typecheck && pnpm run build"
},
"keywords": [],
"author": "Oren Levi",
"license": "MIT",
"description": "",
"devDependencies": {
"@types/node": "^22.13.10",
"esbuild": "^0.25.1",
"prettier": "3.5.3",
"rimraf": "^6.0.1",
"typescript": "^5.8.2"
},
"dependencies": {
"zx": "^8.4.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}