-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.22 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.22 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
{
"name": "sine",
"version": "1.0.0",
"private": true,
"description": "",
"homepage": "https://github.com/CosmoCreeper/Sine#readme",
"bugs": {
"url": "https://github.com/CosmoCreeper/Sine/issues"
},
"license": "GPL-3.0-only",
"author": "CosmoCreeper",
"type": "module",
"scripts": {
"dev": "browsercfg import && browsercfg run",
"package": "uv run scripts/package.py",
"test": "browsercfg test",
"lint": "oxlint && eslint",
"lint:fix": "oxlint --write && eslint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"prepare": "git config core.hooksPath .githooks"
},
"devDependencies": {
"@chromejs/browsercfg": "^0.1.8",
"@eslint/js": "^10.0.1",
"@eslint/json": "^1.2.0",
"@microsoft/eslint-plugin-sdl": "^1.1.0",
"eslint": "^10.3.0",
"eslint-plugin-mozilla": "^4.4.0",
"eslint-plugin-no-unsanitized": "^4.1.5",
"eslint-plugin-promise": "^7.3.0",
"fast-staged": "^1.0.1",
"globals": "^17.6.0",
"oxfmt": "^0.51.0",
"oxlint": "^1.66.0",
"svgo": "^4.0.1"
},
"lint-staged": {
"lean": true,
"*": [
"oxfmt --check --no-error-on-unmatched-pattern",
"oxlint --no-error-on-unmatched-pattern",
"eslint"
]
}
}