-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
54 lines (54 loc) · 1.97 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
49
50
51
52
53
54
{
"name": "new-tab",
"version": "0.22.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 run lint:css && bun run lint:js && bun run lint:ts",
"lint:css": "stylelint --ignore-path .gitignore '**/*.{css,xcss}'",
"lint:js": "eslint --ignore-path .gitignore --ext .ts,.mjs,.js,.cjs .",
"lint:ts": "tsc --noEmit",
"prebuild": "rm -rf dist; cp -r static dist",
"test": "bun test --preload ./test/setup.ts test/unit --coverage",
"test:e2e": "TZ=UTC playwright test test/e2e/*.spec.ts",
"test:e2e:debug": "bun run test:e2e --debug",
"test:e2e:ui": "bun run test:e2e --ui",
"zip": "sh -c 'test -z \"$(git status --porcelain)\"' && bun run build && bun run lint && bun run test && cd dist && zip ../chrome-extension.zip *"
},
"dependencies": {
"stage1": "0.8.0-next.7"
},
"devDependencies": {
"@ekscss/plugin-import": "0.0.12",
"@maxmilton/stylelint-config": "0.0.15",
"@playwright/test": "1.41.0",
"@types/bun": "1.0.2",
"@types/chrome": "0.0.258",
"@typescript-eslint/eslint-plugin": "6.19.0",
"@typescript-eslint/parser": "6.19.0",
"ekscss": "0.0.17",
"eslint": "9.2.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-unicorn": "50.0.1",
"happy-dom": "13.1.4",
"lightningcss": "1.23.0",
"prettier": "3.2.4",
"stylelint": "16.1.0",
"stylelint-config-standard": "36.0.0",
"terser": "5.27.0",
"typescript": "5.3.3"
},
"overrides": {
"bun-types": "1.0.23"
}
}