-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.61 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
{
"name": "new-tab",
"version": "0.24.0-next.0",
"private": true,
"description": "⚡ A high-performance new tab page that gets you where you need to go faster.",
"homepage": "https://github.com/maxmilton/new-tab",
"bugs": "https://github.com/maxmilton/new-tab/issues",
"repository": "github:maxmilton/new-tab",
"license": "MIT",
"author": "Max Milton <max@2okki.com>",
"type": "module",
"imports": {
"#*": "./src/*"
},
"scripts": {
"build": "NODE_ENV=production bun build.ts",
"dev": "NODE_ENV=development bun build.ts",
"lint": "bun lint:fmt && bun lint:css && bun lint:js && bun lint:js2 && bun lint:ts",
"lint:css": "stylelint **.css",
"lint:fmt": "biome check",
"lint:js": "oxlint --format=stylish",
"lint:js2": "eslint",
"lint:ts": "tsc --noEmit",
"test": "bun test --only-failures",
"test:ci": "bun test --coverage --randomize --rerun-each=3",
"test:e2e": "playwright test"
},
"dependencies": {
"stage1": "0.10.0"
},
"devDependencies": {
"@biomejs/biome": "2.5.1",
"@eslint/js": "10.0.1",
"@maxmilton/eslint-config": "0.3.3",
"@maxmilton/oxlint-config": "0.0.3",
"@maxmilton/test-utils": "0.0.15",
"@playwright/test": "1.61.1",
"@types/bun": "1.3.14",
"@types/chrome": "0.2.2",
"eslint": "10.6.0",
"eslint-plugin-oxlint": "1.73.0",
"eslint-plugin-unicorn": "71.1.0",
"happy-dom": "20.10.6",
"lightningcss": "1.32.0",
"oxlint": "1.73.0",
"stylelint": "17.14.0",
"stylelint-config-standard": "40.0.0",
"terser": "5.48.0",
"typescript": "6.0.3",
"typescript-eslint": "8.63.0"
}
}