-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.09 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.09 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
56
57
58
59
60
{
"name": "mtab",
"author": "Max Hu",
"description": "a simple configurable new tab extension",
"alias": {
"~": "."
},
"keywords": [],
"scripts": {
"d": "bun run dev",
"dev": "bun run dev:chrome",
"dev:chrome": "bun run ./scripts/tasks.ts dev chrome",
"dev:firefox": "bun run ./scripts/tasks.ts dev firefox",
"build": "bun run build:chrome",
"build:chrome": "bun run ./scripts/tasks.ts build chrome",
"build:firefox": "bun run ./scripts/tasks.ts build firefox",
"build:firefox:windows": "bun run ./scripts/tasks.ts build firefox",
"package": "bun run package:chrome",
"package:chrome": "bun run ./scripts/tasks.ts package chrome",
"package:firefox": "bun run ./scripts/tasks.ts package firefox",
"rc:chrome": "bun run ./scripts/tasks.ts rc chrome",
"rc:firefox": "bun run ./scripts/tasks.ts rc firefox",
"package:source": "bun run ./scripts/tasks.ts source",
"clean": "bun run ./scripts/tasks.ts clean",
"format": "oxfmt --write \"./**/*.{js,jsx,mjs,cjs,ts,tsx,json,html}\"",
"format:check": "oxfmt --check \"./**/*.{js,jsx,mjs,cjs,ts,tsx,json,html}\"",
"oxfmt": "bun run format",
"commitlint": "commitlint",
"lint": "oxlint src scripts --deny-warnings",
"lint:fix": "bun run lint --fix",
"check": "bun run format:check && bun run lint && bun run typecheck",
"prepare": "husky",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"caniuse-lite": "^1.0.30001774",
"idb-keyval": "^6.2.2",
"mathjs": "^13.2.3",
"parcel": "2.16.3",
"sortablejs": "^1.15.7",
"tippy.js": "^6.3.7",
"uuid": "^11.1.0",
"vanilla-colorful": "^0.7.2"
},
"devDependencies": {
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@parcel/config-default": "2.16.3",
"@parcel/core": "2.16.3",
"@parcel/resolver-default": "2.16.3",
"@types/chrome": "^0.1.37",
"@types/node": "^25.3.2",
"@types/sortablejs": "^1.15.9",
"husky": "^9.1.7",
"oxfmt": "^0.40.0",
"oxlint": "^1.55.0",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.19"
}
}