-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.22 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
{
"name": "@simolation/vue-hotkey",
"version": "2.0.1",
"repository": "https://github.com/Simolation/vue-hotkey.git",
"author": "Simon Osterlehner <[email protected]>",
"license": "MIT",
"private": false,
"files": [
"dist"
],
"main": "./dist/vue-hotkey.umd.js",
"module": "./dist/vue-hotkey.es.js",
"exports": {
".": {
"import": "./dist/vue-hotkey.es.js",
"require": "./dist/vue-hotkey.umd.js",
"types": "./dist/index.d.ts"
}
},
"types": "./dist/index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"dev": "yarn vite",
"build": "yarn vite build && yarn vue-tsc --emitDeclarationOnly",
"preview": "vite preview",
"do:publish": "npm publish --access=public"
},
"dependencies": {
"vue-demi": "^0.13.11"
},
"peerDependencies": {
"@vue/composition-api": "^1.0.0-rc.1",
"vue": "^2.0.0 || >=3.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"devDependencies": {
"@babel/types": "^7.20.7",
"@types/node": "^18.13.0",
"@vitejs/plugin-vue": "^4.0.0",
"typescript": "^4.9.5",
"vite": "^4.1.1",
"vue": "^3.3.4",
"vue-tsc": "^1.8.19"
}
}