-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
48 lines (48 loc) · 1.49 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
47
48
{
"name": "new-tab",
"version": "0.23.0",
"description": "⚡ A high-performance new tab page that gets you where you need to go faster.",
"repository": "maxmilton/new-tab",
"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"
},
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
},
"dependencies": {
"stage1": "0.8.0-next.13"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@ekscss/plugin-import": "0.0.15",
"@eslint/js": "9.13.0",
"@maxmilton/eslint-config": "0.0.3",
"@maxmilton/stylelint-config": "0.1.2",
"@maxmilton/test-utils": "0.0.2",
"@playwright/test": "1.48.2",
"@types/bun": "1.1.12",
"@types/chrome": "0.0.279",
"ekscss": "0.0.20",
"eslint": "9.13.0",
"eslint-plugin-unicorn": "56.0.0",
"happy-dom": "14.12.3",
"lightningcss": "1.27.0",
"stylelint": "16.10.0",
"stylelint-config-standard": "36.0.1",
"terser": "5.36.0",
"typescript": "5.6.3",
"typescript-eslint": "8.11.0"
}
}