-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1022 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 1022 Bytes
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
{
"name": "devgrid",
"version": "1.1.0",
"description": "Chrome Extension that automatically synchronizes accepted LeetCode submissions to GitHub",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && npm run build:background && npm run build:content && npm run build:popup && npm run copy:files",
"build:background": "vite build --config vite.config.background.ts",
"build:content": "vite build --config vite.config.content.ts",
"build:popup": "vite build --config vite.config.popup.ts",
"copy:files": "node copy-files.js",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write \"src/**/*.{ts,tsx,json}\""
},
"dependencies": {},
"devDependencies": {
"@types/chrome": "^0.0.268",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"vite": "^5.2.10"
}
}