-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (22 loc) · 813 Bytes
/
package.json
File metadata and controls
23 lines (22 loc) · 813 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "PlaybackRate",
"version": "1.0.0",
"description": "快放,慢放,倒放",
"main": "index.js",
"repository": "https://github.com/BetterNCM/boilerplate",
"author": "MicroBlock <microblock@qq.com>",
"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.tsx ./src/style.css ./src/startup_script.ts --bundle --outdir=./ --sourcemap=inline --watch --target=chrome91",
"build": "esbuild ./src/main.tsx ./src/startup_script.ts ./src/style.css --bundle --minify --outdir=dist --target=chrome91",
"analyze": "esbuild --bundle ./src/main.tsx --outdir=dist --minify --analyze=verbose"
}
}