-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.09 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
{
"name": "@duannx/vue-client-only",
"version": "1.0.3",
"description": "",
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"private": false,
"author": "duannx",
"license": "MIT",
"scripts": {
"dev": "rollup -c rollup.config.js -w",
"pre-build": "rimraf dist",
"build": "npm run pre-build && rollup -c rollup.config.js",
"publish-npm": "npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/duannx/vue-client-only.git"
},
"keywords": [
"vue3",
"client only",
"vue client only",
"no SSR",
"vue no SSR"
],
"bugs": {
"url": "https://github.com/duannx/vue-client-only/issues"
},
"homepage": "https://github.com/duannx/vue-client-only#readme",
"devDependencies": {
"rollup": "^2.75.6",
"rollup-plugin-typescript2": "^0.32.1",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"vue": "^3.2.37",
"rimraf": "^3.0.2"
},
"dependencies": {},
"peerDependencies": {
"vue": "^3.x"
},
"engines": {
"node": ">=8.0.0"
}
}