-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathpackage.json
64 lines (64 loc) · 2 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
57
58
59
60
61
62
63
64
{
"private": true,
"name": "leetcode-card-monorepo",
"version": "1.0.1",
"description": "Show your dynamically generated LeetCode stats on your GitHub profile or your website!",
"license": "MIT",
"type": "module",
"author": {
"name": "JacobLinCool",
"email": "[email protected]"
},
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"prepare": "husky",
"test": "vitest --coverage --coverage.include packages/*/src",
"build:worker": "pnpm run --filter cloudflare-worker build",
"build:package": "pnpm run --filter leetcode-card build",
"build:image": "selflare compile --script packages/cloudflare-worker/dist/worker.js && docker compose build",
"build": "pnpm -r build",
"format": "prettier --write . --ignore-path .gitignore",
"lint": "eslint ."
},
"keywords": [
"leetcode",
"stats",
"card"
],
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"selflare": "^1.1.2",
"tsup": "8.0.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"vitest": "^2.1.8"
},
"repository": {
"type": "git",
"url": "https://github.com/JacobLinCool/LeetCode-Stats-Card.git"
},
"bugs": {
"url": "https://github.com/JacobLinCool/LeetCode-Stats-Card/issues"
},
"homepage": "https://github.com/JacobLinCool/LeetCode-Stats-Card#readme",
"packageManager": "[email protected]",
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
}
}