-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.24 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
{
"name": "DOMspy",
"version": "1.0.0",
"type": "module",
"scripts": {
"clean": "rm -rf dist/*",
"copy-assets": "mkdir -p dist/images && cp public/images/DOMspy*.png dist/images/ && cp manifest.json dist/ && cp public/popup.html dist/",
"build": "npm run clean && tsx ./scripts/build.ts && npm run copy-assets",
"dev": "npx vite build --watch",
"preview": "npx vite preview",
"test": "vitest",
"check": "svelte-check",
"lint": "eslint . --ext .js,.svelte",
"format": "prettier --write ."
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@testing-library/svelte": "^5.2.6",
"@tsconfig/svelte": "^5.0.4",
"@types/chrome": "^0.0.xxx",
"@types/eslint": "^9.6.1",
"@types/node": "^22.x.x",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"eslint": "^9.17.0",
"eslint-plugin-svelte": "^2.0.0",
"fs-extra": "^11.2.0",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.2",
"svelte": "^5.16.2",
"svelte-check": "^4.1.1",
"svelte-preprocess": "^6.0.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.2",
"vite": "^6.0.7",
"vitest": "^2.1.8",
"tsx": "^4.7.0"
}
}