-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.41 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
{
"name": "leetcode-ts",
"version": "1.0.0",
"description": "Mastering Coding Challenges in TypeScript",
"bugs": {
"url": "https://github.com/Gabb-c/leetcode-ts/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Gabb-c/leetcode-ts"
},
"funding": "https://github.com/Gabb-c/leetcode-ts?sponsor=1",
"license": "MIT",
"author": {
"name": "Gabb-c",
"url": "https://github.com/Gabb-c"
},
"type": "module",
"scripts": {
"bench": "vitest bench",
"coverage": "vitest run --coverage",
"docs:build": "vitepress build docs",
"docs:dev": "vitepress dev docs",
"docs:preview": "vitepress preview docs",
"format": "biome format ./src",
"lint:ci": "biome ci src",
"prepare": "is-ci || husky",
"test": "vitest",
"test:ui": "vitest --ui --api 9527",
"typecheck": "tsc --noEmit --extendedDiagnostics"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/node": "^20.14.10",
"@vitest/coverage-v8": "^2.0.2",
"@vitest/ui": "^2.0.2",
"husky": "^9.0.11",
"is-ci": "^3.0.1",
"typescript": "^5.5.3",
"vite-tsconfig-paths": "^4.3.2",
"vitepress": "^1.3.0",
"vitest": "^2.0.2",
"vue": "^3.4.31"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": ["@algolia/client-search", "search-insights"]
}
}
}