-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.62 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node esbuild.js --dev",
"build": "node esbuild.js",
"check": "concurrently \"pnpm:check:*\"",
"check:lint": "eslint .",
"check:svelte": "svelte-check",
"check:tsc": "tsc --noEmit",
"format": "concurrently \"pnpm:format:*\"",
"format:eslint": "eslint . --fix",
"format:pretty": "prettier --list-different --ignore-unknown --write src"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.5.0",
"@types/node": "^20.14.8",
"@types/webextension-polyfill": "^0.10.7",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"dotenv": "^16.4.5",
"esbuild": "^0.23.0",
"esbuild-plugin-clear": "^1.0.1",
"esbuild-plugin-copy": "^2.1.1",
"esbuild-style-plugin": "^1.6.3",
"esbuild-svelte": "^0.8.1",
"eslint": "^9.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-svelte": "^2.40.0",
"globals": "^15.6.0",
"postcss": "^8.4.38",
"postcss-import": "^16.1.0",
"prettier": "^3.3.2",
"prettier-plugin-svelte": "^3.2.5",
"svelte": "^4.2.18",
"svelte-check": "^3.8.1",
"svelte-eslint-parser": "^0.40.0",
"svelte-preprocess": "^6.0.1",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.2",
"typescript-eslint": "^7.13.1",
"yargs": "^17.7.2"
},
"dependencies": {
"emittery": "^1.0.3",
"loglevel": "^1.9.1",
"svelte-octicons": "^18.8.0",
"webextension-polyfill": "^0.12.0"
}
}