-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.38 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
{
"name": "@rspack/lite-tapable",
"version": "1.0.1",
"repository": "https://github.com/rspack-contrib/rspack-lite-tapable",
"license": "MIT",
"description": "Lite weight tapable for Rspack",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc -b ./tsconfig.build.json",
"dev": "tsc -b -w",
"lint": "biome check .",
"lint:write": "biome check . --write",
"prepare": "simple-git-hooks && npm run build",
"test": "jest --colors",
"release": "node ./scripts/release.mjs"
},
"files": [
"dist"
],
"simple-git-hooks": {
"pre-commit": "npx nano-staged"
},
"nano-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
"biome check --write --no-errors-on-unmatched"
]
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@rspack/core": "1.0.14",
"@types/node": "^22.8.7",
"@types/jest": "29.5.14",
"cross-env": "^7.0.3",
"execa": "9.5.1",
"fs-extra": "11.2.0",
"jest": "29.7.0",
"jest-cli": "29.7.0",
"jest-environment-node": "29.7.0",
"nano-staged": "^0.8.0",
"semver": "7.6.3",
"simple-git-hooks": "^2.11.1",
"ts-jest": "29.2.5",
"typescript": "5.6.3"
},
"packageManager": "pnpm@9.12.3",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"provenance": true
},
"engines": {
"node": ">=16.0.0"
}
}