-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
56 lines (56 loc) · 1.46 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
{
"name": "@condorhero/monorepo",
"type": "module",
"version": "2.2.0",
"private": true,
"packageManager": "[email protected]",
"description": "A fake server plugin for Vite.",
"author": "Condor Hero",
"license": "MIT",
"homepage": "https://github.com/condorheroblog/vite-plugin-fake-server/blob/main/README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/condorheroblog/vite-plugin-fake-server.git"
},
"bugs": {
"url": "https://github.com/condorheroblog/vite-plugin-fake-server/issues"
},
"scripts": {
"postinstall": "simple-git-hooks",
"prepublishOnly": "nr build",
"dev": "esno index.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"build": "nr -r build",
"build:watch": "nr -r build:watch",
"typecheck": "tsc --noEmit",
"release": "bumpp -r && pnpm -r publish --access public"
},
"devDependencies": {
"@antfu/eslint-config": "^3.11.2",
"@rollup/plugin-json": "^6.1.0",
"@types/node": "^22.10.1",
"bumpp": "^9.8.1",
"esbuild": "^0.24.0",
"eslint": "^9.16.0",
"esno": "^4.8.0",
"lint-staged": "^15.2.10",
"rimraf": "^5.0.10",
"rollup": "^4.28.1",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-node-externals": "^7.1.3",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{ts,js,mjs,cjs,cts,mts,json,md}": [
"eslint --fix"
]
}
}