forked from antfu/vue-starport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.65 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
{
"name": "vue-starport",
"version": "0.0.5",
"packageManager": "[email protected]",
"description": "Shared Vue component across routes with animations",
"keywords": [
"vue",
"animation",
"transition"
],
"homepage": "https://github.com/antfu/vue-starport#readme",
"bugs": {
"url": "https://github.com/antfu/vue-starport/issues"
},
"license": "MIT",
"author": "Anthony Fu <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/antfu/vue-starport.git"
},
"funding": "https://github.com/sponsors/antfu",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "pkgroll",
"dev": "pkgroll --watch",
"play": "vite playground --open",
"play:build": "vite build playground",
"lint": "eslint .",
"typecheck": "vue-tsc --noEmit",
"test": "vitest",
"test:e2e": "cypress open",
"prepublishOnly": "nr build",
"release": "bumpp --commit --tag --push && pnpm publish"
},
"dependencies": {
"@vueuse/core": "^8.2.5",
"vue": "^3.2.31"
},
"devDependencies": {
"@antfu/eslint-config": "^0.20.2",
"@antfu/ni": "^0.14.0",
"@types/node": "^17.0.23",
"bumpp": "^7.1.1",
"cypress": "^9.5.3",
"eslint": "^8.12.0",
"nanoid": "^3.3.2",
"pkgroll": "^1.0.3",
"pnpm": "^6.32.4",
"typescript": "^4.6.3",
"vite": "^2.9.1",
"vitest": "^0.9.0",
"vue-router": "^4.0.14",
"vue-tsc": "^0.33.9"
}
}