forked from rolldown/rolldown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.95 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "monorepo",
"version": "0.0.5",
"description": "Rollup in Rust",
"private": true,
"workspaces": [
"crates/rolldown_binding",
"crates/rolldown_binding_wasm",
"packages/**",
"web/**",
"examples/**"
],
"scripts": {
"lint": "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.mjs",
"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}' -w",
"prettier:ci": "prettier . '!**/*.{js,ts,json,md,yml,yaml}' -c",
"toml:format": "taplo format",
"toml:ci": "taplo format --check",
"format:ci": "run-s prettier:ci toml:ci",
"typecheck": "yarn workspace @rolldown/node run typecheck",
"bench": "yarn workspace bench run bench",
"build:ts": "tsc -b tsconfig.project.json",
"docs": "cd web/docs && yarn dev",
"docs:build": "cd web/docs && yarn build",
"docs:preview": "cd web/docs && yarn preview",
"TODO(hyf0): #need to investigate following commands": "_",
"build:ci:release": "run-s build:node:ci build:binding:release",
"build:node:ci": "yarn workspace @rolldown/node run build",
"version": "yarn lerna version --force-publish --no-private --no-git-tag-version && node scripts/post-version.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"license": "MIT",
"devDependencies": {
"@ls-lint/ls-lint": "^2.2.2",
"@parcel/watcher": "^2.4.1",
"@taplo/cli": "^0.7.0",
"chalk": "^5.3.0",
"change-case": "^5.4.3",
"conventional-changelog-cli": "^4.1.0",
"debug": "^4.3.4",
"dedent": "^1.5.1",
"execa": "^8.0.1",
"fs-extra": "^11.2.0",
"husky": "^9.0.11",
"lerna": "^8.1.2",
"lint-staged": "^15.2.2",
"lodash-es": "^4.17.21",
"npm-run-all2": "^6.1.2",
"oxlint": "^0.2.13",
"prettier": "^3.2.5",
"rollup": "^4.12.1",
"tree-sitter": "^0.20.6",
"tree-sitter-go": "^0.20.0",
"typescript": "^5.4.2",
"zx": "^7.2.3"
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "always"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.18.0"
}
}