-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
45 lines (45 loc) · 1.29 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
40
41
42
43
44
45
{
"name": "@nsis/docs",
"version": "0.3.0",
"author": "Jan T. Sott",
"private": false,
"license": "Zlib",
"type": "module",
"exports": "./dist/index.js",
"types": "./types",
"files": [
"dist/",
"docs/",
"README.md"
],
"devDependencies": {
"@types/node": "^20",
"eslint": "^9.7.0",
"eslint-plugin-jsonc": "^2.16.0",
"eslint-plugin-unicorn": "^55.0.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.7",
"markdownlint-cli": "^0.19.0",
"npm-run-all": "^4.1.5",
"tslib": "^2.3.1",
"tsup": "^8.2.3",
"typescript": "^5.5.3",
"typescript-eslint": "^7.18.0"
},
"scripts": {
"build": "tsup",
"dev": "npm run build -- --watch",
"lint:json": "eslint ./*.json --ignore-pattern .gitignore",
"lint:md": "markdownlint ./docs/**/*.md",
"lint:ts": "eslint ./src --ignore-pattern .gitignore",
"lint": "npm-run-all --parallel lint:*",
"prepack": "npm run build",
"prepare": "husky",
"test": "echo \"Error: no test specified\" && exit 0"
},
"lint-staged": {
"*.(json|ts)": "eslint --cache --fix",
"*.(markdown|md)": "markdownlint --fix"
},
"packageManager": "[email protected]+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e"
}