-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.45 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
{
"name": "@duannx/vue-router-transition",
"version": "1.3.0",
"description": "Transition plugin for vue router next",
"main": "dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"author": "duannx",
"license": "MIT",
"private": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./dist/*": "./dist/*",
"./package.json": "./package.json"
},
"scripts": {
"dev": "rollup -c -w",
"pre-build": "rimraf dist",
"build": "npm run pre-build && rollup -c",
"publish-npm": "npm publish --access public",
"bump": "changeset version"
},
"devDependencies": {
"postcss": "^8.4.4",
"rimraf": "^3.0.2",
"rollup": "^2.60.2",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.31.1",
"rollup-plugin-vue": "^6.0.0",
"tslib": "^2.3.1",
"typescript": "^4.5.2",
"vue": "^3.0.0",
"vue-router": "^4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/duannx/vue-router-transition.git"
},
"keywords": [
"vue3",
"vue router",
"vue router transition",
"vue page transition",
"transition",
"animation"
],
"bugs": {
"url": "https://github.com/duannx/vue-router-transition/issues"
},
"homepage": "https://github.com/duannx/vue-router-transition#readme",
"dependencies": {
"@changesets/cli": "^2.27.1"
}
}