-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
27 lines (27 loc) · 895 Bytes
/
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
{
"name": "stream-pip",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/LookRain/streaming-pip.git",
"author": "Lu Yu (Louis) <[email protected]>",
"license": "MIT",
"scripts": {
"clean": "rm -rf dist && rm release.zip",
"release": "cp static/* dist && cp -r images dist && zip -r release.zip dist",
"build": "yarn clean && parcel build src/popup.html src/*.ts && yarn release",
"build-only": "parcel build src/popup.html src/*.ts && cp static/* dist && cp -r images dist",
"dev": "parcel watch build src/popup.html src/*.ts && yarn release"
},
"devDependencies": {
"@types/chrome": "^0.0.91",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"cssnano": "^4.1.10",
"parcel": "^1.12.4",
"typescript": "^3.7.4"
},
"dependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
}
}