-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.43 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": "@sabertazimi/ojs",
"version": "2.4.1",
"private": true,
"packageManager": "pnpm@9.15.4",
"description": "Archive for OJ code",
"author": "sabertazimi <sabertazimi@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/sabertazimi/OJs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/sabertazimi/OJs.git"
},
"bugs": {
"url": "https://github.com/sabertazimi/OJs/issues"
},
"keywords": [
"algorithm",
"algorithms",
"OJ",
"OJs",
"leetcode",
"leetcode-solutions",
"leetcode-cpp",
"leetcode-typescript",
"typescript"
],
"main": "index.ts",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"lint": "pnpm lint:style && pnpm lint:type-check",
"lint:style": "eslint ./leetCode ./codeWars",
"lint:type-check": "tsc --noEmit",
"lint:fix": "eslint ./leetCode ./codeWars --fix",
"changeset": "commit-and-tag-version --dry-run -s",
"release": "commit-and-tag-version -s",
"start": "pnpm test:watch",
"test": "vitest run --coverage",
"test:watch": "vitest"
},
"devDependencies": {
"@dg-scripts/eslint-config": "^5.21.5",
"@types/node": "^22.13.0",
"@vitest/coverage-v8": "^3.0.4",
"c8": "^10.1.3",
"ci-info": "^4.1.0",
"commit-and-tag-version": "^12.5.0",
"consola": "^3.4.0",
"eslint": "^9.19.0",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"vitest": "^3.0.4"
}
}