forked from rolldown/rolldown
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.75 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
61
62
{
"name": "monorepo",
"description": "Rollup in Rust",
"private": true,
"packageManager": "pnpm@10.11.0",
"engines": {
"node": ">=18.20.3"
},
"scripts": {
"lint-code": "oxlint -c .oxlintrc.json --ignore-path=.oxlintignore --deny-warnings",
"lint-knip": "knip",
"fmt": "dprint fmt",
"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": "tsc -b tsconfig.json",
"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",
"preinstall": "npx only-allow pnpm"
},
"license": "MIT",
"devDependencies": {
"@actions/core": "^1.11.1",
"@oxc-node/core": "catalog:",
"@oxc-project/runtime": "catalog:",
"@types/node": "24.0.0",
"cjs-module-lexer": "^2.1.0",
"conventional-changelog-cli": "^5.0.0",
"dprint": "^0.50.0",
"husky": "^9.1.7",
"knip": "^5.60.2",
"lint-staged": "^16.1.0",
"oxlint": "^0.18.1",
"remove-unused-vars": "^0.0.6",
"rolldown": "0.15.1",
"typescript": "^5.8.3"
},
"pnpm": {
"overrides": {
"vitepress>vite": "npm:rolldown-vite@latest"
},
"onlyBuiltDependencies": [
"@parcel/watcher",
"dprint",
"esbuild",
"tree-sitter"
]
},
"lint-staged": {
"*.@(js|ts|tsx|yml|yaml|md|json|html|toml)": [
"dprint fmt --staged"
],
"*.@(js|ts|tsx)": [
"pnpm lint-code -- --fix"
],
"*": "typos --force-exclude"
}
}