-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.39 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.39 KB
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
{
"name": "vue-paystack2",
"version": "0.0.9",
"repository": "https://github.com/ECJ222/vue-paystack2.git",
"license": "MIT",
"author": "Enoch Chejieh <enochchejieh@gmail.com>",
"keywords": [
"vue",
"composition-api",
"vue-demi",
"paystack",
"payment"
],
"files": [
"dist"
],
"main": "./dist/vue-paystack2.umd.js",
"module": "./dist/vue-paystack2.es.js",
"exports": {
".": {
"import": "./dist/vue-paystack2.es.js",
"require": "./dist/vue-paystack2.umd.js"
}
},
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"lint": "eslint --fix --ext .ts,.vue --no-error-on-unmatched-pattern .",
"release": "standard-version && git push --follow-tags && npm publish",
"serve": "vite preview"
},
"dependencies": {
"vue-demi": "^0.11.4"
},
"devDependencies": {
"@types/node": "^16.10.2",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"@vitejs/plugin-vue": "^1.9.2",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^7.18.0",
"typescript": "^4.4.3",
"vite": "^2.6.2",
"vue": "^3.2.16",
"vue-tsc": "^0.3.0",
"standard-version": "latest"
},
"peerDependencies": {
"@vue/composition-api": "^1.0.0-rc.1",
"vue": "^2.0.0 || >=3.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
}
}