-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
54 lines (54 loc) · 1.89 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": "spotify-lyrics",
"version": "1.6.7",
"description": "Desktop Spotify Web Player Instant Synchronized Lyrics",
"scripts": {
"lint": "tsc --noEmit && eslint --ext .ts --fix src/",
"test": "vitest",
"build": "vite build",
"build:firefox": "yarn run build && node ./scripts/mv2.js",
"watch": "cross-env NODE_ENV=development yarn build --watch",
"serve": "web-ext --config web-ext.config.js run --start-url open.spotify.com",
"serve:chromium": "yarn run serve -- -t chromium",
"start": "concurrently npm:watch npm:serve:chromium",
"test:rate": "cross-env TEST=rate concurrently npm:watch npm:serve:chromium",
"release": "npx mantou132/release#b4228eed684d0e4a23ecc333d416f4ea7b67a845 -w public patch",
"start:firebase": "yarn --cwd functions run build && firebase emulators:start",
"install": "yarn --cwd functions",
"prepare": "husky install && yarn build",
"s:singer": "deno run --allow-read --allow-net scripts/singer.ts"
},
"author": "mantou132",
"license": "ISC",
"dependencies": {
"@mantou/gem": "^1.7.12",
"@sentry/browser": "^5.25.0",
"@webcomponents/webcomponentsjs": "^2.8.0",
"chinese-conv": "^1.0.1",
"duoyun-ui": "^1.1.20",
"webextension-polyfill": "^0.12.0"
},
"devDependencies": {
"@types/webextension-polyfill": "^0.10.7",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"concurrently": "^5.2.0",
"cross-env": "^7.0.2",
"esbuild": "^0.20.2",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"happy-dom": "^14.10.1",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"typescript": "^5.4.5",
"vite": "^5.2.10",
"vitest": "^1.6.0",
"web-ext": "^7.8.0"
},
"lint-staged": {
"*.ts": "eslint --fix"
}
}