-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 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
{
"name": "vue-stage-play",
"description": "Designing a guided tour for your website with vue components, much like directing a stage play.",
"private": false,
"version": "0.5.2",
"author": "max.lee <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/f820602h/vue-stage-play#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/f820602h/vue-stage-play.git"
},
"keywords": [
"vue",
"intro"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"dev": "pkgroll --watch",
"build": "pkgroll --minify",
"lint": "eslint .",
"test": "vitest --dom --watch",
"play": "vite playground --open",
"coverage": "vitest --dom --coverage",
"typecheck": "vue-tsc --noEmit",
"docs:dev": "vitepress dev doc",
"docs:build": "vitepress build doc",
"docs:preview": "vitepress preview doc"
},
"dependencies": {
"@floating-ui/vue": "^1.0.2",
"@vueuse/core": "^10.4.1",
"vitepress": "^1.0.0-rc.20",
"vue": "^3.3.4"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.0",
"@types/node": "^20.6.1",
"@vitejs/plugin-vue": "^4.2.3",
"@vitest/coverage-v8": "^0.34.6",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/test-utils": "^2.4.1",
"eslint": "^8.49.0",
"eslint-plugin-vue": "^9.17.0",
"happy-dom": "^12.6.0",
"pkgroll": "^1.11.0",
"prettier": "^3.0.3",
"sass": "^1.66.1",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vitest": "^0.34.6",
"vue-tsc": "^1.8.5"
}
}