-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 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
{
"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": "MPL-2.0",
"author": "CosmoCreeper",
"workspaces": [
"./tools/oxlint-plugin-mozilla"
],
"type": "module",
"scripts": {
"init": "bun install && uv sync --project scripts/",
"ci": "bun ci && uv sync --project scripts/",
"dev": "browsercfg import && browsercfg run",
"package": "uv run scripts/package.py",
"test": "browsercfg test",
"test:twilight": "browsercfg test --browser zen-twilight --download",
"lint": "oxlint && uv run --project scripts/ ruff check && uv run scripts/check_licenses.py",
"lint:fix": "oxlint --write",
"fmt": "oxfmt && uv run --project scripts/ ruff format",
"fmt:check": "oxfmt --check && uv run --project scripts/ ruff format --check",
"prepare": "git config core.hooksPath .githooks",
"svgo": "svgo -f src/assets/images"
},
"devDependencies": {
"@chromejs/browsercfg": "^0.1.8",
"@types/bun": "latest",
"oxfmt": "^0.52.0",
"oxlint": "^1.67.0",
"oxlint-plugin-eslint": "^1.68.0",
"svgo": "^4.0.1"
}
}