-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.37 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
{
"name": "@birchill/inject-manifest-plugin",
"version": "1.0.0",
"description": "rspack plugin to inject a manifest file into a service worker file",
"repository": "https://github.com/birchill/inject-manifest-plugin/",
"keywords": [
"service worker",
"manifest"
],
"author": "Birchill, Inc.",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"files": [
"dist/**"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"fast-json-stable-stringify": "^2.1.0",
"pretty-bytes": "^6.1.1",
"schema-utils": "^4.2.0",
"source-map": "^0.7.4",
"webpack-sources": "^3.2.3"
},
"devDependencies": {
"@release-it/conventional-changelog": "8.0.1",
"@rspack/core": "1.0.3",
"@types/node": "20.14.10",
"@types/webpack-sources": "3.2.3",
"husky": "9.1.5",
"knip": "5.29.2",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"release-it": "17.6.0",
"tsup": "8.2.4",
"typescript": "5.5.4"
},
"peerDependencies": {
"@rspack/core": "^1.0.0"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepublishOnly": "pnpm build",
"build": "tsup",
"release": "release-it",
"prepare": "husky"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"lint-staged": {
"*.{ts,json}": [
"prettier --write"
]
}
}