-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.35 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.35 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
50
51
52
53
54
55
56
57
58
59
{
"name": "unrouting",
"type": "module",
"version": "0.1.7",
"packageManager": "pnpm@11.1.2",
"description": "",
"license": "MIT",
"repository": "unjs/unrouting",
"sideEffects": false,
"exports": {
".": "./dist/index.mjs"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"dev": "vitest dev",
"lint": "eslint .",
"prepare": "simple-git-hooks",
"prepack": "pnpm build",
"prepublishOnly": "pnpm lint && pnpm test",
"release": "pnpm test && bumpp",
"test": "pnpm test:unit && pnpm test:types",
"test:unit": "vitest run",
"test:types": "tsc --noEmit"
},
"dependencies": {
"escape-string-regexp": "^5.0.0",
"ufo": "^1.6.3"
},
"devDependencies": {
"@antfu/eslint-config": "9.0.0",
"@types/node": "24.11.0",
"@vitest/coverage-v8": "4.1.8",
"bumpp": "11.0.1",
"eslint": "10.4.1",
"lint-staged": "17.0.5",
"pkg-pr-new": "0.0.65",
"rou3": "0.7.12",
"simple-git-hooks": "2.13.1",
"tsdown": "0.21.0",
"typescript": "6.0.2",
"vite": "8.0.16",
"vitest": "4.1.8",
"vue-router": "5.0.3"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,mjs,cjs,json,.*rc}": [
"pnpm eslint --fix"
]
}
}