forked from rolldown/rolldown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.47 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
62
63
64
65
{
"name": "monorepo",
"version": "0.0.5",
"description": "Rollup in Rust",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=18.18.0"
},
"workspaces": [
"crates/rolldown_binding",
"crates/rolldown_binding_wasm",
"packages/**",
"web/**",
"examples/**",
"scripts"
],
"scripts": {
"lint-code": "oxlint --ignore-path=./.oxlintignore --import-plugin --deny-warnings",
"lint-filename": "ls-lint",
"watch": "yarn run build --watch",
"build": "DEBUG='rolldown:*' node ./scripts/build-node-binding.js",
"build:node": "yarn workspaces foreach -R --topological-dev --from '@rolldown/node' run build",
"build:binding": "yarn workspace @rolldown/node-binding run build",
"build:binding:release": "yarn workspace @rolldown/node-binding run build:release",
"build:wasm": "yarn workspace @rolldown/wasm-binding run build",
"build:wasm:release": "yarn workspace @rolldown/wasm-binding run build:release",
"test": "yarn workspaces foreach --all --parallel run test",
"test:update": "yarn workspaces foreach --all --parallel run test:update",
"test:update-rolldown": "yarn workspace @rolldown/node run test:update",
"test:update-rollup": "yarn workspace rollup-tests run test:update",
"prettier": "prettier . '**/*.{js,ts,json,md,yml,yaml,vue}' -w",
"prettier:ci": "prettier . '**/*.{js,ts,json,md,yml,yaml,vue}' -c",
"toml:format": "taplo format",
"toml:ci": "taplo format --check",
"format:ci": "run-s prettier:ci toml:ci",
"type-check": "yarn workspaces foreach --all --parallel run type-check",
"bench": "yarn workspace bench run bench",
"docs": "yarn workspace rolldown-docs run dev",
"docs:build": "yarn workspace rolldown-docs run build",
"docs:preview": "yarn workspace rolldown-docs run preview",
"version": "yarn lerna version --force-publish --no-private --no-git-tag-version && node scripts/post-version.cjs",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"license": "MIT",
"devDependencies": {
"@ls-lint/ls-lint": "^2.2.2",
"@taplo/cli": "^0.7.0",
"conventional-changelog-cli": "^4.1.0",
"husky": "^9.0.11",
"lerna": "^8.1.2",
"lint-staged": "^15.2.2",
"npm-run-all2": "^6.1.2",
"oxlint": "^0.2.13",
"prettier": "^3.2.5",
"typescript": "^5.4.2"
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "always"
}
}