-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.23 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
{
"name": "vue-directive-providers",
"author": "Novout",
"license": "MIT",
"version": "0.1.0",
"description": "A simple collection of general-purpose directives for Vue 2/3.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/betterwrite/vue-directive-providers"
},
"scripts": {
"build": "rimraf dist && tsup",
"prettier": "npx prettier --write .",
"dev": "yarn build && vite --port 3000",
"demo": "yarn build && vite build && vite --port 5000 preview"
},
"keywords": [
"vue",
"hook",
"directives"
],
"dependencies": {
"@vueuse/core": "^9.3.0",
"vue-demi": "latest"
},
"peerDependencies": {
"@vue/composition-api": "^1.0.0-rc.1",
"vue": "^2.0.0 || >=3.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"devDependencies": {
"@types/jsdom": "^16.2.6",
"@types/node": "^14.14.22",
"@vitejs/plugin-vue": "^3.1.2",
"rimraf": "^3.0.2",
"tsup": "^6.2.3",
"typescript": "^4.1.3",
"vite": "^3.1.4",
"vue": "^3.0.0"
},
"files": [
"dist",
"package.json"
],
"engines": {
"node": ">= 14"
}
}