-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 757 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "kindyear-music-info",
"version": "1.0.2",
"description": "",
"main": "index.js",
"repository": "https://github.com/BetterNCM/boilerplate",
"author": "KINDYEAR <me@kindyear.cn>",
"license": "GPL-3.0-or-later",
"private": false,
"dependencies": {
},
"devDependencies": {
"@types/react": "^18.0.29",
"@types/react-dom": "^18.0.11",
"esbuild": "^0.17.13"
},
"scripts": {
"build:dev": "esbuild ./src/main.ts ./src/startup_script.ts --bundle --outdir=dist --sourcemap=inline --watch --target=chrome91",
"build": "esbuild ./src/main.ts ./src/startup_script.ts --bundle --minify --outdir=dist --target=chrome91",
"analyze": "esbuild --bundle ./src/main.ts --outdir=dist --minify --analyze=verbose"
}
}