forked from quoid/userscripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 952 Bytes
/
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
{
"name": "userscripts",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "npm run build:app && npm run build:ext",
"build:app": "node scripts/build-app.js",
"build:ext": "node scripts/build-ext-v4.js",
"lint:js": "eslint . && prettier --check . --plugin prettier-plugin-svelte",
"lint:css": "stylelint '**/*.{css,html,svelte}'",
"prettier": "prettier --write . --plugin prettier-plugin-svelte"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^2.4.5",
"@types/webextension-polyfill": "^0.10.5",
"autoprefixer": "^10.4.16",
"cm-show-invisibles": "^3.1.0",
"codemirror": "^5.65.15",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-svelte": "^2.34.0",
"prettier": "3.0.3",
"prettier-plugin-svelte": "3.0.3",
"stylelint": "^15.11.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-standard": "^34.0.0",
"svelte": "4.2.0",
"vite": "^4.5.0"
}
}