-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.31 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.31 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
{
"name": "@github-semantic-search/mcp-server-config-pack",
"type": "module",
"version": "1.0.0",
"packageManager": "pnpm@10.10.0",
"description": "",
"author": "edelauna",
"keywords": [],
"scripts": {
"start": "tsx",
"watch": "tsx watch",
"dev": "pnpm run start --watch src/dev.ts",
"bundle": "pnpm run start src/bundle.ts",
"lint": "eslint .",
"test:types": "tsc --noEmit",
"release": "pnpm dlx changelogen@latest --release --push",
"prepare": "simple-git-hooks",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"@antfu/eslint-config": "^4.12.0",
"@parcel/watcher": "^2.5.1",
"@types/node": "^22.15.3",
"config-rocket": "^0.5.4",
"consola": "^3.4.2",
"eslint": "^9.26.0",
"kontroll": "^1.0.5",
"lint-staged": "^15.5.1",
"nodemon": "^3.1.10",
"pathe": "^2.0.3",
"simple-git-hooks": "^2.13.1",
"std-env": "^3.9.0",
"tinyglobby": "^0.2.13",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
},
"pnpm": {
"overrides": {
"is-core-module": "npm:@nolyfill/is-core-module@^1.0.39"
},
"onlyBuiltDependencies": [
"@parcel/watcher",
"esbuild",
"simple-git-hooks"
]
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}