-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
executable file
·64 lines (64 loc) · 2.04 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
55
56
57
58
59
60
61
62
63
64
{
"name": "chrome-palette",
"displayName": "Chrome Palette",
"version": "2.2.2",
"description": "Command Palette for Chrome",
"license": "MIT",
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/dbuezas/chrome-palette.git"
},
"engines": {
"pnpm": ">=9",
"node": ">=20"
},
"scripts": {
"serve": "vite dev --open 'http://127.0.0.1:5173/src/pages/popup/index.html'",
"serve:prod": "npm run start:prod & npx serve dist & npx --yes open-cli http://localhost:3000/src/pages/popup/ -- 'google chrome' & wait",
"start": "vite build --watch --mode development --minify false",
"start:prod": "vite build --watch",
"build": "vite build && rm chrome-palette.zip && zip -r9 chrome-palette.zip dist/",
"lint": "eslint . --fix -c .eslintrc --ext js,ts --ignore-pattern='!.*'",
"dev:nodemon": "nodemon",
"analyse-bundle": "npx vite-bundle-visualizer",
"upgrade-deps": "npx npm-upgrade",
"test": "jest"
},
"type": "module",
"dependencies": {
"fuzzysort": "^3.0.0",
"solid-infinite-scroll": "^1.0.1",
"solid-js": "^1.7.11",
"tinykeys": "^2.1.0",
"twas": "^2.1.3"
},
"devDependencies": {
"@crxjs/vite-plugin": "2.0.0-beta.7",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/chrome": "0.0.243",
"@types/node": "20.5.1",
"@typescript-eslint/eslint-plugin": "6.4.0",
"@typescript-eslint/parser": "6.4.0",
"autoprefixer": "^10.4.15",
"babel-preset-solid": "^1.7.7",
"eslint": "8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-solid": "^0.14.3",
"fs-extra": "11.1.1",
"nodemon": "3.0.1",
"postcss": "^8.4.28",
"prettier": "^3.0.2",
"prettier-plugin-css-order": "^2.0.0",
"sass": "1.66.1",
"solid-devtools": "^0.27.7",
"ts-loader": "9.4.4",
"ts-node": "10.9.1",
"typescript": "^5.6.2",
"vite": "4.4.9",
"vite-plugin-solid": "^2.7.0"
}
}