-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 908 Bytes
/
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
{
"name": "leet2hub",
"version": "0.1.0",
"private": true,
"description": "A browser extension that uploads LeetCode submissions to GitHub.",
"author": {
"name": "Shubham Parihar",
"email": "[email protected]",
"url": "https://github.com/iShibi"
},
"scripts": {
"clean-dist": "zx ./scripts/delete.mjs",
"compile-tw": "npx tailwindcss -i ./src/input.css -o ./dist/output.css",
"compile-src": "tsc",
"copy-static": "zx ./scripts/copy.mjs",
"build": "npm run clean-dist && npm run compile-tw && npm run compile-src && npm run copy-static"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@types/chrome": "^0.0.270",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.9.0",
"prettier": "3.3.3",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0",
"zx": "^8.1.5"
},
"type": "module",
"license": "MIT"
}