-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.32 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
{
"name": "makeflow-chrome-extension",
"version": "0.1.1",
"description": "Makeflow chrome extension",
"repository": "https://github.com/makeflow/makeflow-chrome-extension.git",
"author": "Chengdu Mufan Technology Co., Ltd.",
"license": "MIT",
"scripts": {
"build:popup": "parcel build src/popup/index.html --out-dir bld/popup/ --public-url .",
"build:content-scripts": "parcel build src/content-scripts/main.ts --out-dir bld/content-scripts/",
"build:options-page": "parcel build src/options-page/index.html --out-dir bld/options-page --public-url .",
"build:public": "shx cp -r src/public/ bld/ && shx cp src/manifest.json bld/",
"build": "rimraf bld && yarn build:public && yarn build:popup && yarn build:content-scripts && yarn build:options-page"
},
"devDependencies": {
"@magicspace/configs": "^0.1.47",
"@magicspace/tslint-rules": "^0.1.41",
"@types/chrome": "^0.0.83",
"@types/node": "^11.13.2",
"@types/react": "^16.8.14",
"@types/react-dom": "^16.8.4",
"parcel-bundler": "^1.12.3",
"postcss-modules": "^1.4.1",
"prettier": "^1.17.0",
"rimraf": "^2.6.3",
"shx": "^0.3.2",
"ts-node": "^8.0.3",
"tslint": "^5.15.0",
"typescript": "^3.7.3"
},
"dependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6",
"tslang": "^0.1.13"
}
}