-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 901 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 901 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
29
30
31
32
33
{
"name": "apireplay",
"version": "0.1.20",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"package": "npm run build && cd dist && zip -r ../dist.zip .",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"format": "prettier --write .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.2.0",
"@types/chrome": "^0.0.325",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"autoprefixer": "^10.4.21",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.2",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vitest": "^2.1.8",
"@playwright/test": "^1.49.1"
}
}