forked from banocean/ifv
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.64 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.64 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
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "hephaestus",
"version": "1.0.0",
"devDependencies": {
"@e18e/eslint-plugin": "^0.3.0",
"@eslint/js": "^10.0.1",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@tsconfig/svelte": "^5.0.8",
"@types/bun": "^1.3.11",
"@wxt-dev/module-svelte": "^2.0.5",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.16.0",
"globals": "^17.4.0",
"jsdom": "^29.0.1",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"prettier-plugin-jsdoc": "^1.8.0",
"prettier-plugin-svelte": "^3.5.1",
"simple-git-hooks": "^2.13.1",
"svelte": "^5.55.1",
"svelte-check": "^4.4.6",
"tslib": "^2.8.1",
"typescript-eslint": "^8.58.0",
"vitest": "^4.1.2",
"wxt": "^0.20.20"
},
"private": true,
"scripts": {
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"format": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"check:tsc": "tsc --noEmit",
"check:svelte": "svelte-check --tsconfig ./tsconfig.json",
"build": "wxt build",
"build:firefox": "wxt build -b firefox",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox"
},
"simple-git-hooks": {
"pre-commit": "bunx lint-staged",
"post-merge": "bun install",
"post-checkout": "bun install"
},
"lint-staged": {
"*": [
"prettier --write"
]
},
"type": "module"
}