forked from rolldown/rolldown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.05 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "monorepo",
"description": "Rollup in Rust",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=18.20.3"
},
"scripts": {
"lint-code": "oxlint -c .oxlintrc.json --ignore-path=.oxlintignore --import-plugin --jsdoc-plugin --deny-warnings",
"lint-filename": "echo 'TODO: ls-lint is too slow now'",
"lint-filename:bak": "ls-lint",
"lint-spell": "cspell \"**\" --no-progress --gitignore",
"lint-prettier": "prettier . '**/*.{js,ts,json,md,yml,yaml,vue}' -c",
"lint-prettier:fix": "prettier . '**/*.{js,ts,json,md,yml,yaml,vue}' -w",
"lint-toml": "taplo format --check",
"lint-toml:fix": "taplo format",
"lint-repo": "npm-run-all -l --parallel lint-prettier lint-toml lint-spell",
"build": "echo \"Use just build\"",
"build:release": "echo \"Use just build native release\"",
"test": "echo \"Use just test-node\"",
"ci:build-release-binding": "pnpm --filter rolldown run build-binding:release",
"type-check": "pnpm --recursive run type-check",
"docs": "pnpm --filter rolldown-docs run dev",
"docs:build": "pnpm --filter rolldown-docs run build",
"docs:preview": "pnpm --filter rolldown-docs run preview",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"prepare": "husky install"
},
"license": "MIT",
"devDependencies": {
"@ls-lint/ls-lint": "^2.2.3",
"@taplo/cli": "^0.7.0",
"@types/node": "22.5.2",
"cjs-module-lexer": "^1.3.1",
"conventional-changelog-cli": "^5.0.0",
"cspell": "^8.8.4",
"husky": "^9.0.0",
"lint-staged": "^15.2.5",
"npm-rolldown": "npm:[email protected]",
"npm-run-all": "^4.1.5",
"oxlint": "0.9.2",
"prettier": "^3.3.1",
"rolldown": "workspace:*",
"typescript": "^5.4.5"
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "always"
},
"lint-staged": {
"*.toml": "taplo format",
"*.{js,ts,json,md,yml,yaml,vue}": [
"prettier --write",
"pnpm lint-code -- --fix"
]
}
}