-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.38 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.38 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
53
54
55
56
57
58
59
60
{
"name": "@nsis/dent-cli",
"version": "0.4.3",
"description": "An opinionated code formatter for NSIS scripts",
"license": "MIT",
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"lint": "concurrently --prefix-colors blue,green,magenta npm:lint:*",
"lint:biome": "biome check",
"lint:e18e": "e18e-cli analyze",
"prepack": "npm run build",
"publish:jsr": "deno publish",
"publish:npm": "np",
"start": "npm run build -- --watch",
"test": "echo \"Tests pending\" && exit 0"
},
"files": [
"bin/",
"LICENSE",
"README.md"
],
"type": "module",
"bin": {
"dent": "./bin/cli.mjs"
},
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/idleberg/node-dent-cli.git"
},
"keywords": [
"nsis",
"formatter"
],
"dependencies": {
"@nsis/dent": "^0.6.2",
"commander": "^14.0.3",
"consola": "^3.4.2",
"kleur": "^4.1.5"
},
"devDependencies": {
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@idleberg/configs": "^0.4.2",
"@types/node": "^24.11.0",
"concurrently": "^9.2.1",
"np": "^11.0.2",
"tsdown": "^0.21.2",
"typescript": "^5.3.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"lefthook"
]
},
"packageManager": "pnpm@10.30.3+sha512.c961d1e0a2d8e354ecaa5166b822516668b7f44cb5bd95122d590dd81922f606f5473b6d23ec4a5be05e7fcd18e8488d47d978bbe981872f1145d06e9a740017"
}