-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.78 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
{
"name": "@umajs/plugin-vue-ssr",
"version": "2.0.5",
"description": "In umajs, Vue is used to develop the plug-in of spa and MPa, which supports server-side rendering and client-side rendering",
"author": "[email protected]",
"keywords": [
"vue",
"ssr",
"vue ssr",
"Nuxtjs",
"Nuxt",
"umajs",
"umajs-vue-ssr",
"@umajs/plugin-vue-ssr"
],
"license": "MIT",
"main": "lib/index.js",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib",
"index.d.ts"
],
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"scripts": {
"fix": "esw src --fix --ext .ts",
"lint": "npx eslint src --ext .ts",
"lint-w": "esw src --clear --color -w --ext .ts",
"build-w": "tsc -w --inlineSourceMap",
"start": "run-p lint-w build-w",
"prebuild": "npm run lint",
"build": "tsc",
"prepublish": "npm run build"
},
"dependencies": {
"@srejs/vue": "latest",
"consolidate": "^0.16.0",
"get-stream": "^6.0.1"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/node": "^12.12.9",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"@umajs/core": "^2.0.1",
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-typescript": "^0.14.0",
"eslint-watch": "^7.0.0",
"npm-run-all": "^4.1.5",
"typescript": "^4.2.3"
},
"repository": {
"type": "git",
"url": "[email protected]:Umajs/plugin-vue-ssr.git"
},
"bugs": {
"url": "https://github.com/Umajs/plugin-vue-ssr"
},
"homepage": "https://github.com/Umajs/plugin-vue-ssr#readme"
}