-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.64 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
65
66
67
68
69
70
{
"name": "vue-preview",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "tsc -b -w",
"clean": "rimraf dist",
"sample": "parcel hot-reload-sample/index.html",
"package": "npm run clean && cd packages/preview && npm run build && cd ../../ && tsc -b && node scripts/package.js && npm run bundlesize",
"bundlesize": "bundlesize",
"postinstall": "lerna bootstrap && tsc -b",
"reset-playground": "TODO"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^13.5.0",
"bundlesize": "^0.18.0",
"circular-dependency-plugin": "^5.2.0",
"fs-extra": "^9.0.0",
"lerna": "^3.20.2",
"lodash": "^4.17.15",
"semantic-release": "^17.0.0",
"semantic-release-vsce": "^3.0.0",
"ts-loader": "^8.0.0",
"typescript": "^4.0.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-node-externals": "^2.0.0"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "avoid",
"printWidth": 100
},
"release": {
"verifyConditions": [
"semantic-release-vsce"
],
"prepare": [
{
"path": "semantic-release-vsce",
"packageVsix": "extension.vsix"
}
],
"publish": [
"semantic-release-vsce"
]
},
"renovate": {
"extends": [
"bitworkers"
]
},
"bundlesize": [
{
"path": "./dist/packages/extension/dist/extensionMain.js",
"maxSize": "4.0 kB",
"compression": "none"
},
{
"path": "./dist/packages/preview/dist/previewMain.js",
"maxSize": "240 kB",
"compression": "none"
}
]
}