-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
49 lines (49 loc) · 1.18 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
{
"name": "vue-client-only",
"version": "0.0.0-semantic-release",
"description": "Vue component to wrap non SSR friendly components",
"repository": {
"url": "egoist/vue-client-only",
"type": "git"
},
"main": "dist/vue-client-only.common.js",
"unpkg": "dist/vue-client-only.min.js",
"types": "types/index.d.ts",
"files": [
"dist",
"types/index.d.ts"
],
"scripts": {
"types": "dtslint --localTs node_modules/typescript/lib types",
"test": "echo 'no tests!' && npm run lint",
"lint": "xo",
"build": "npm run build:cjs && npm run build:umd",
"build:cjs": "FORMAT=cjs bili",
"build:umd": "FORMAT=umd bili",
"prepublish": "npm run build",
"example": "poi"
},
"poi": {
"entry": "example/index.js",
"dist": "example/dist"
},
"author": "egoist <[email protected]>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"bili": "^0.16.0-rc.1",
"dtslint": "^4.1.0",
"eslint-config-rem": "^3.0.0",
"poi": "^9.3.1",
"tsd": "^0.16.0",
"typescript": "^4.3.2",
"vue": "^2.6.13",
"xo": "^0.18.0"
},
"xo": {
"extends": "rem/prettier",
"ignores": [
"example/**"
]
}
}