forked from rolldown/rolldown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.74 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
{
"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 \"**\"",
"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",
"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"
},
"license": "MIT",
"devDependencies": {
"@ls-lint/ls-lint": "^2.2.3",
"@taplo/cli": "^0.7.0",
"@types/node": "20.14.10",
"cjs-module-lexer": "^1.3.1",
"conventional-changelog-cli": "^5.0.0",
"cspell": "^8.8.4",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"npm-rolldown": "npm:[email protected]",
"oxlint": "0.5.3",
"prettier": "^3.3.1",
"rolldown": "workspace:*",
"typescript": "^5.4.5"
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "always"
}
}