-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.85 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.85 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "git-remap",
"version": "0.0.5",
"packageManager": "pnpm@9.1.1",
"description": "修改git的源地址",
"type": "module",
"keywords": [],
"license": "MIT",
"homepage": "https://github.com/duowb/git-remap#readme",
"bugs": "https://github.com/duowb/git-remap/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/duowb/git-remap.git"
},
"author": "duowb <duowenbo@gmail.com>",
"files": [
"bin.mjs",
"dist"
],
"typesVersions": {
"*": {
"*": [
"./dist/*"
]
}
},
"sideEffects": false,
"bin": "./bin.mjs",
"scripts": {
"build": "nr js:build && nr ui:build",
"dev": "nr -C ui dev",
"js:build": "unbuild",
"ui:build": "nr -C ui build",
"lint": "eslint .",
"prepublishOnly": "nr build",
"release": "bumpp && npm publish",
"test": "vitest",
"typecheck": "pnpm -r typecheck",
"prepare": "simple-git-hooks",
"server": "tsx watch src/mock-server.ts"
},
"dependencies": {
"ansis": "^3.12.0",
"cac": "^6.7.14",
"error-stack-parser-es": "^0.1.4",
"exit-hook": "^4.0.0",
"get-port-please": "^3.1.2",
"h3": "^1.11.1",
"mrmime": "^2.0.0",
"open": "^10.1.0",
"simple-git": "^3.27.0",
"trace-record": "^0.2.0"
},
"devDependencies": {
"@antfu/ni": "^0.21.12",
"@sxzz/eslint-config": "^6.1.2",
"@types/node": "^20.12.12",
"bumpp": "^9.4.1",
"git-remap": "workspace:*",
"lint-staged": "^15.2.2",
"pnpm": "^9.1.1",
"prettier": "^3.5.3",
"rimraf": "^5.0.7",
"simple-git-hooks": "^2.11.1",
"tsx": "^4.19.3",
"typescript": "^5.4.5",
"unbuild": "^2.0.0",
"vitest": "^3.1.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"pre-push": "pnpm run test"
},
"lint-staged": {
"*": "eslint --fix"
},
"volta": {
"node": "20.19.1"
}
}