-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.1 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
{
"version": "1.0.3",
"name": "@apideck/vue-file-picker",
"author": "Apideck",
"license": "MIT",
"main": "dist/vue-file-picker.umd.js",
"module": "dist/vue-file-picker.es.js",
"typings": "dist/index.d.ts",
"repository": "https://github.com/apideck-libraries/vue-file-picker",
"files": [
"dist",
"src"
],
"keywords": [
"apideck",
"file-picker",
"javascript",
"vue"
],
"engines": {
"node": ">=12"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"release": "np --no-publish && npm publish --access public --registry https://registry.npmjs.org",
"typecheck": "vue-tsc --noEmit"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/types": "^7.20.5",
"@types/node": "^18.11.15",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/tsconfig": "^0.1.3",
"np": "^7.6.2",
"typescript": "^4.9.4",
"vite": "^4.0.1",
"vite-plugin-dts": "^1.7.1",
"vue": "^3.2.45",
"vue-tsc": "^1.0.13"
},
"dependencies": {
"@apideck/file-picker-js": "^1.0.2"
},
"peerDependencies": {
"vue": "^3.0.0"
}
}