-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.14 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
{
"name": "thepeer-vue",
"version": "0.0.11",
"description": "Vue package for Thepeer",
"keywords": [
"financial",
"data",
"API",
"direct-charge",
"direct-debit",
"send",
"checkout",
"p2p",
"thepeer",
"thepeer-vue"
],
"homepage": "https://github.com/idorenyinudoh/thepeer-vue#readme",
"license": "MIT",
"author": "Idorenyin Udoh <[email protected]> (https://iudoh.me)",
"files": ["dist"],
"main": "./dist/thepeer-vue.umd.cjs",
"module": "./dist/thepeer-vue.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/thepeer-vue.js",
"require": "./dist/thepeer-vue.umd.cjs"
}
},
"repository": "https://github.com/idorenyinudoh/thepeer-vue",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build && vue-tsc --declaration --emitDeclarationOnly && mv dist/lib dist/types",
"preview": "vite preview"
},
"devDependencies": {
"@types/node": "^20.5.1",
"@vitejs/plugin-vue": "^4.0.0",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vue-tsc": "^1.0.11"
},
"peerDependencies": {
"vue": "^3.0.0"
}
}