-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.02 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
75
76
77
78
{
"name": "@night-slayer18/leetcode-cli",
"version": "3.1.0",
"description": "A modern LeetCode CLI built with TypeScript",
"type": "module",
"main": "dist/index.js",
"bin": {
"leetcode": "dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/night-slayer18/leetcode-cli.git"
},
"scripts": {
"build": "tsup src/index.ts --format esm --dts --clean --minify --treeshake",
"dev": "tsup src/index.ts --format esm --watch",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"**/*.{ts,json,md,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{ts,json,md,yml,yaml}\""
},
"keywords": [
"leetcode",
"cli",
"typescript",
"algorithm",
"competitive-programming",
"coding-interview",
"interview-prep",
"dsa",
"data-structures",
"terminal",
"leetcode-solutions",
"problem-solving"
],
"author": "night-slayer18",
"license": "Apache-2.0",
"dependencies": {
"@supabase/supabase-js": "^2.90.1",
"ansi-escapes": "^7.2.0",
"chalk": "^5.3.0",
"cli-cursor": "^5.0.0",
"cli-table3": "^0.6.5",
"commander": "^12.1.0",
"conf": "^13.0.1",
"diff": "^8.0.2",
"got": "^14.4.4",
"inquirer": "^12.1.0",
"keytar": "^7.9.0",
"marked": "^15.0.4",
"marked-terminal": "^7.2.1",
"open": "^11.0.0",
"ora": "^8.1.1",
"striptags": "^3.2.0",
"zod": "^4.3.5"
},
"devDependencies": {
"@types/diff": "^7.0.2",
"@types/inquirer": "^9.0.7",
"@types/node": "^22.10.2",
"@types/striptags": "^0.0.5",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"@vitest/coverage-v8": "^4.0.16",
"eslint": "^9.39.2",
"prettier": "^3.8.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^4.0.16"
},
"engines": {
"node": ">=20.0.0"
}
}