-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.45 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
{
"scripts": {
"build:prepare": "node scripts/prepare/index.mjs",
"build:data": "npm-run-all build:data:*",
"build:data:sponsors": "node scripts/data/sponsors.mjs",
"build:md": "npm-run-all build:md:*",
"build:md:api": "node scripts/markdown/api.mjs",
"build:md:readmes": "node scripts/markdown/readmes.mjs",
"build:md:governance": "node scripts/markdown/governance.mjs",
"build:html": "node scripts/html/index.mjs",
"build": "npm-run-all build:*",
"lint": "npm-run-all \"lint:!(fix)\"",
"lint:fix": "npm-run-all lint:*:fix",
"lint:js": "eslint .",
"lint:js:fix": "node --run lint:js -- --fix",
"lint:css": "stylelint \"**/*.css\" --allow-empty-input",
"lint:css:fix": "node --run lint:css -- --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"dependencies": {
"@node-core/doc-kit": "^1.3.9",
"@tailwindcss/node": "^4.3.0",
"classnames": "^2.5.1",
"npm-run-all": "^4.1.5",
"semver": "^7.8.1",
"typedoc": "^0.28.19",
"typedoc-plugin-markdown": "^4.11.0",
"webpack": "^5.107.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.4.0",
"globals": "^17.6.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.5",
"prettier": "^3.8.3",
"stylelint": "^17.13.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-order": "^8.1.1",
"typedoc-plugin-missing-exports": "^4.1.3"
}
}