-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) 路 1.07 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) 路 1.07 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
{
"name": "rsbuild-plugin-example",
"version": "0.0.0",
"repository": "https://github.com/rstackjs/rsbuild-plugin-template",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rs lib",
"bump": "pnpm version -m \"release: v%s\"",
"check": "rs check",
"dev": "rs lib -w",
"format": "rs fmt",
"lint": "rs lint",
"prepare": "rs hooks",
"test": "rs test"
},
"devDependencies": {
"@rsbuild/core": "^2.2.8",
"@rstackjs/test-utils": "^1.0.0",
"@rstest/playwright": "^0.12.0",
"@types/node": "^24.13.6",
"playwright": "^1.63.0",
"rstack": "^0.7.6",
"typescript": "^7.0.2"
},
"peerDependencies": {
"@rsbuild/core": "^2.0.0"
},
"peerDependenciesMeta": {
"@rsbuild/core": {
"optional": true
}
},
"packageManager": "pnpm@12.5.1",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}