-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1005 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1005 Bytes
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
{
"name": "@rspack-template/core",
"version": "0.0.3",
"homepage": "https://github.com/rstackjs/rspack-binding-template",
"bugs": {
"url": "https://github.com/rstackjs/rspack-binding-template/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rstackjs/rspack-binding-template.git"
},
"packageManager": "pnpm@10.20.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./package.json": "./package.json"
},
"files": [
"lib"
],
"scripts": {
"prepare": "husky",
"build": "pnpm run --filter @rspack-template/binding build",
"lint-staged": "lint-staged"
},
"dependencies": {
"@rspack/core": "1.5.8",
"@rspack-template/binding": "workspace:*"
},
"devDependencies": {
"@taplo/cli": "^0.7.0",
"husky": "^9.0.0",
"lint-staged": "^16.0.0"
},
"lint-staged": {
"*.toml": "npx taplo format"
}
}