generated from threeal/nodejs-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.21 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
{
"name": "leettest",
"version": "0.2.0",
"description": "Tool for compiling and testing solutions to LeetCode problems",
"keywords": [
"LeetCode",
"tool",
"build",
"test"
],
"homepage": "https://github.com/threeal/leettest#readme",
"bugs": {
"url": "https://github.com/threeal/leettest/issues",
"email": "alfi.maulana.f@gmail.com"
},
"repository": "github:threeal/leettest",
"license": "MIT",
"author": "Alfi Maulana <alfi.maulana.f@gmail.com>",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": "dist/bin.js",
"files": [
"dist"
],
"scripts": {
"format": "prettier --write --cache .",
"lint": "eslint",
"prepack": "tsc",
"start": "tsx src/bin.ts",
"test": "vitest"
},
"dependencies": {
"glob": "^11.0.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/node": "^22.13.5",
"@types/yargs": "^17.0.33",
"@vitest/coverage-v8": "^3.0.7",
"eslint": "^9.21.0",
"prettier": "^3.5.2",
"tsx": "^4.19.3",
"typescript": "^5.7.3",
"typescript-eslint": "^8.25.0",
"vitest": "^3.0.7"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}