-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.03 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.03 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
{
"name": "lichess4chess",
"description": "Lichess Analysis for Chess.com Games",
"version": "0.7.2",
"license": "MIT",
"author": {
"name": "ryrden",
"email": "ryanssteles@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/ryrden/lichess4chess.git"
},
"scripts": {
"build": "vite build --config vite.config.chrome.ts",
"build:chrome": "vite build --config vite.config.chrome.ts",
"build:firefox": "vite build --config vite.config.firefox.ts",
"dev": "nodemon --config nodemon.chrome.json",
"dev:chrome": "nodemon --config nodemon.chrome.json",
"dev:firefox": "nodemon --config nodemon.firefox.json",
"test:e2e": "npm run build:chrome && playwright test",
"test:e2e:ui": "npm run build:chrome && playwright test --ui",
"test:e2e:debug": "npm run build:chrome && playwright test --debug",
"test:e2e:headed": "npm run build:chrome && playwright test --headed",
"test:e2e:watch": "npm run build:chrome && playwright test --headed --workers=1"
},
"type": "module",
"dependencies": {
"axios": "^1.9.0",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.32",
"@playwright/test": "^1.58.2",
"@tailwindcss/vite": "^4.1.5",
"@types/chrome": "^0.0.318",
"@types/node": "^22.15.3",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.3",
"@types/webextension-polyfill": "^0.12.3",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"@vitejs/plugin-react": "^4.4.1",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"fs-extra": "^11.3.0",
"nodemon": "^3.1.10",
"tailwindcss": "^4.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"vite": "^6.3.4",
"vite-tsconfig-paths": "^5.1.4",
"webextension-polyfill": "^0.12.0"
}
}