-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 2.01 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
55
56
57
58
59
60
61
62
63
64
{
"name": "airpack",
"version": "1.5.0",
"description": "A better solution for sharing webpack config in multiple projects. It gives webpack the ability to read configs from dependencies and merge them in a more appropriate way.",
"bin": {
"airpack": "dist/airpack.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "npm run build -- --watch",
"start:react-webpack-project": "PROJECT=samples/react-webpack-project npm run start",
"start": "MAIN=$(npm prefix)/dist/airpack.js; cd $PROJECT && node $MAIN",
"debug:react-webpack-project": "PROJECT=samples/react-webpack-project npm run debug",
"debug": "MAIN=$(npm prefix)/src/airpack.ts; cd $PROJECT && node --inspect-brk -r ts-node/register $MAIN",
"airpack-check": "node -r ts-node/register scripts/airpack-check.ts",
"airpack-check:debug": "node --inspect-brk -r ts-node/register scripts/airpack-check.ts",
"build": "tsc",
"postbuild": "chmod +x dist/airpack.js",
"prepare": "rimraf dist && npm run build"
},
"dependencies": {
"@arzyu/get-json": "^1.0.0",
"@babel/generator": "^7.14.5",
"@babel/parser": "^7.14.7",
"@babel/template": "^7.14.5",
"@babel/traverse": "^7.14.7",
"@babel/types": "^7.14.5",
"chalk": "^4.1.1",
"commander": "^8.0.0",
"get-package-bin": "^0.1.0",
"interpret": "^2.2.0",
"semver": "^7.3.5",
"webpack-merge": "^5.8.0"
},
"devDependencies": {
"@types/babel__generator": "^7.6.2",
"@types/babel__template": "^7.4.0",
"@types/babel__traverse": "^7.14.2",
"@types/interpret": "^1.1.1",
"@types/pacote": "^11.1.0",
"@types/semver": "^7.3.6",
"pacote": "^11.3.5",
"rimraf": "^3.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
},
"peerDependencies": {
"webpack-cli": ">=3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/arzyu/airpack"
},
"keywords": [
"webpack",
"webpack-cli",
"webpack-config"
],
"license": "MIT"
}