forked from quoid/userscripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.26 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
{
"name": "userscripts",
"private": true,
"type": "module",
"scripts": {
"build:content": "VITE_ENTRY=content vite build",
"build": "vite build && VITE_ENTRY=content vite build",
"dev:page": "VITE_ENTRY=page vite",
"dev:popup": "VITE_ENTRY=popup vite",
"dev": "vite",
"format": "prettier --write '**/*.{js,ts,css,svelte}'",
"lint:css": "stylelint '**/*.{css,svelte}'",
"lint:js": "eslint ./ --max-warnings 10",
"preview": "vite preview",
"test": "vitest run"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^2.0.3",
"@testing-library/svelte": "^3.2.2",
"@types/webextension-polyfill": "^0.10.0",
"autoprefixer": "^10.4.13",
"cm-show-invisibles": "^3.1.0",
"codemirror": "^5.65.12",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-svelte": "^2.27.2",
"jsdom": "^21.1.2",
"postcss-html": "^1.5.0",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.0",
"stylelint": "^14.16.1",
"stylelint-config-html": "^1.1.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard": "^29.0.0",
"stylelint-order": "^6.0.3",
"stylelint-prettier": "^3.0.0",
"svelte": "^3.55.1",
"svelte-i18n": "^3.6.0",
"vite": "^4.1.4",
"vitest": "^0.30.1"
}
}