-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.15 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.15 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
{
"name": "rspack-chain",
"version": "2.0.0-beta.1",
"keywords": [
"rspack",
"config",
"chain",
"api"
],
"repository": "rstackjs/rspack-chain",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./dist/index.js"
}
},
"typings": "types/index.d.ts",
"files": [
"dist",
"types/*.d.ts"
],
"scripts": {
"build": "rslib build",
"bump": "npx bumpp",
"dev": "rslib build -w",
"fix": "yarn lint:fix && yarn style:fix",
"prepare": "pnpm build",
"style": "prettier --check .",
"style:fix": "prettier --write .",
"test": "rstest run",
"test:types": "tsc -p ./types/test/tsconfig.json"
},
"devDependencies": {
"@rslib/core": "^0.19.6",
"@rspack/core": "2.0.0-beta.7",
"@rstest/core": "^0.6.8",
"deepmerge": "^4.3.1",
"javascript-stringify": "^2.1.0",
"prettier": "^3.7.3",
"typescript": "^5.9.3",
"webpack": "^5.103.0"
},
"peerDependencies": {
"@rspack/core": "^2.0.0-0"
},
"peerDependenciesMeta": {
"@rspack/core": {
"optional": true
}
},
"packageManager": "pnpm@10.24.0"
}