-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
46 lines (46 loc) · 1.46 KB
/
package.json
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": "new-tab",
"version": "0.24.0-next.0",
"description": "⚡ A high-performance new tab page that gets you where you need to go faster.",
"repository": "github:maxmilton/new-tab",
"bugs": "https://github.com/maxmilton/new-tab/issues",
"homepage": "https://github.com/maxmilton/new-tab",
"author": "Max Milton <[email protected]>",
"license": "MIT",
"private": true,
"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:ts",
"lint:css": "stylelint '**/*.{css,xcss}'",
"lint:fmt": "biome check --diagnostic-level=warn",
"lint:js": "eslint",
"lint:ts": "tsc --noEmit",
"test": "bun test",
"test:e2e": "playwright test"
},
"dependencies": {
"stage1": "0.8.0-next.16"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@ekscss/plugin-import": "0.0.15",
"@eslint/js": "9.21.0",
"@maxmilton/eslint-config": "0.0.9",
"@maxmilton/stylelint-config": "0.2.0",
"@maxmilton/test-utils": "0.0.8",
"@playwright/test": "1.50.1",
"@types/bun": "1.2.4",
"@types/chrome": "0.0.308",
"ekscss": "0.0.20",
"eslint": "9.21.0",
"eslint-plugin-unicorn": "57.0.0",
"happy-dom": "17.2.2",
"lightningcss": "1.29.1",
"stylelint": "16.15.0",
"stylelint-config-standard": "37.0.0",
"terser": "5.39.0",
"typescript": "5.8.2",
"typescript-eslint": "8.26.0"
}
}