-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.62 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.62 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
{
"name": "@rspack/resolver",
"private": true,
"version": "0.0.0",
"scripts": {
"build": "napi build --platform --release --package-json-path npm/package.json --manifest-path napi/Cargo.toml",
"build:binding:release": "napi build --platform --release --package-json-path npm/package.json --manifest-path napi/Cargo.toml",
"build:binding:profiling": "napi build --platform --profile profiling --package-json-path npm/package.json --manifest-path napi/Cargo.toml",
"build:binding:debug": "napi build --platform --package-json-path npm/package.json --manifest-path napi/Cargo.toml",
"prepublishOnly": "napi pre-publish -t npm --package-json-path npm/package.json --npm-dir bindings",
"test": "ava && node --test napi/tests/options.test.mjs",
"prettier": "prettier --check .",
"prettier:ci": "prettier --list-different .",
"format": "prettier --write .",
"prepare": "husky"
},
"devDependencies": {
"@actions/core": "^3.0.0",
"@continuous-auth/client": "^2.3.2",
"@napi-rs/cli": "3.5.1",
"@napi-rs/wasm-runtime": "^1.0.7",
"@taplo/cli": "^0.7.0",
"@types/node": "^24.0.0",
"ava": "^6.1.3",
"commander": "^14.0.0",
"emnapi": "^1.2.0",
"enhanced-resolve": "^5.17.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"prettier": "^3.6.2",
"semver": "^7.7.1",
"typescript": "^5.5.3",
"zx": "^8.8.5"
},
"ava": {
"files": ["napi/__test__/*.spec.mjs"],
"cache": false
},
"packageManager": "pnpm@10.28.2",
"repository": {
"type": "git",
"url": "git+https://rstackjs/rspack-resolver.git"
}
}