forked from ha0z1/New-Bing-Anywhere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 2.09 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
{
"name": "new-bing-anywhere",
"version": "1.2.0",
"private": true,
"description": "New Bing isn't just for Edge anymore. Anywhere you want",
"homepage": "https://github.com/haozi/new-bing-anywhere",
"repository": {
"type": "git",
"url": "https://github.com/haozi/new-bing-anywhere"
},
"license": "MIT",
"author": "haozi",
"scripts": {
"build": "pnpm run copy && pnpm run lint && run-s build:* && pnpm run zip",
"_build:app": "pnpm --filter app run build",
"build:bundle": "vite-node scripts/build.ts -- build",
"zip": "rm -rf output && mkdir output && zip -r new-bing-anywhere.zip dist && mv new-bing-anywhere.zip output",
"copy": "rm -rf dist && cp -r public dist # && cp src/popup/index.html dist/popup.html",
"copy:watch": "pnpm run copy -- --watch",
"dev": "pnpm run lint && pnpm run copy && run-p dev:*",
"_dev:app": "pnpm --filter app run dev",
"dev:bundle": "vite-node scripts/build.ts -- dev",
"lint": "pnpm run lint:prettier && pnpm run lint:eslint",
"lint:eslint": "eslint --ext .js,.ts ./src --fix --cache",
"lint:prettier": "prettier --cache --write ./src ./scripts",
"prepare": "husky install && pnpm run build",
"test": "pnpm run lint"
},
"dependencies": {
"fs-extra": "^11.1.1"
},
"devDependencies": {
"@types/chrome": "^0.0.225",
"@types/fs-extra": "^11.0.1",
"@types/node": "^18.15.7",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"copy-and-watch": "^0.1.6",
"esbuild": "^0.17.12",
"esbuild-plugin-svgr": "^1.1.0",
"esbuild-style-plugin": "^1.6.1",
"eslint": "^8.36.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.7",
"stylus": "^0.59.0",
"stylus-supremacy": "^2.17.5",
"typescript": "^5.0.2",
"vite-node": "^0.29.7"
},
"extensionName": "New Bing Anywhere"
}