forked from skygragon/leetcode-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.5 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
{
"name": "lc",
"version": "3.0.0",
"description": "A cli tool to enjoy leetcode!",
"engines": {
"node": ">=20"
},
"bin": {
"lc": "./bin/leetcode"
},
"scripts": {
"lint": "eslint lib/ test/",
"test": "pnpm run lint && nyc mocha test test/commands test/plugins && nyc report --reporter=lcov"
},
"pkg": {
"scripts": [
"lib"
],
"assets": [
"colors",
"icons",
"templates"
],
"targets": [
"node20-linux-x64",
"node20-linux-arm64",
"node20-macos-x64",
"node20-macos-arm64",
"node20-win-x64"
],
"outputPath": "dist"
},
"repository": {
"type": "git",
"url": "http://github.com/dp9u0/leetcode-cli.git"
},
"keywords": [
"leetcode",
"cli",
"command",
"tool"
],
"author": {
"name": "guodengpeng",
"email": "guodp9u0@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dp9u0/leetcode-cli/issues"
},
"homepage": "https://github.com/dp9u0/leetcode-cli#readme",
"dependencies": {
"ansi-styles": "^3.2.1",
"axios": "^1.7.0",
"cheerio": "1.2.0",
"he": "1.2.0",
"moment": "^2.30.1",
"nconf": "0.13.0",
"ora": "^3.4.0",
"supports-color": "^5.5.0",
"underscore": "1.13.8",
"yargs": "17.7.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@yao-pkg/pkg": "^6.22.0",
"chai": "^6.2.2",
"eslint": "^10.9.1",
"mocha": "^11.8.0",
"nock": "^14.0.17",
"nyc": "^18.0.0",
"rewire": "^9.0.1"
}
}