forked from ejirocodes/vue3-otp-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.85 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "vue3-otp-input",
"version": "0.4.1",
"description": "A fully customizable, OTP (one-time password) input component built with Vue 3.x and Vue Composition API.",
"author": "Ejiro Asiuwhu <[email protected]>",
"scripts": {
"serve": "vue-cli-service serve dev/serve.ts",
"build": "cross-env NODE_ENV=production rollup --config build/rollup.config.js",
"test:unit": "vue-cli-service test:unit",
"build:es": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format es",
"build:ssr": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format cjs",
"build:unpkg": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format iife",
"postbuild": "rimraf ./dist/types/dev ./dist/types/src/entry.d.ts",
"prebuild": "rimraf ./dist"
},
"main": "dist/vue3-otp-input.ssr.js",
"module": "dist/vue3-otp-input.esm.js",
"browser": "dist/vue3-otp-input.esm.js",
"unpkg": "dist/vue3-otp-input.min.js",
"files": [
"dist/*"
],
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@types/jest": "^24.9.1",
"@vue/babel-preset-app": "^4.5.19",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-typescript": "^5.0.8",
"@vue/cli-plugin-unit-jest": "~4.5.19",
"@vue/cli-service": "^5.0.8",
"@vue/compiler-sfc": "^3.2.47",
"@vue/test-utils": "^2.3.0",
"@zerollup/ts-transform-paths": "^1.7.18",
"cross-env": "^7.0.3",
"minimist": "^1.2.8",
"postcss": "^8.4.21",
"rimraf": "^3.0.2",
"rollup": "^2.79.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-vue": "^6.0.0",
"ttypescript": "^1.5.15",
"typescript": "4.6.4",
"vue": "^3.2.47",
"vue-jest": "5.0.0-alpha.10"
},
"peerDependencies": {
"vue": "^3.0.*"
},
"bugs": {
"url": "https://github.com/ejirocodes/vue3-otp-input/issues"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"keywords": [
"vue 3 otp input",
"vue otp input",
"vue",
"vue 3",
"vue composition API",
"otp",
"input",
"otp input",
"one-time password",
"one time password",
"one time password input",
"one time password input component",
"one time password input component built with vue",
"one time password input component built with vue 3",
"vue split input"
],
"license": "MIT",
"readme": "README.md",
"repository": "https://github.com/ejirocodes/vue3-otp-input",
"sideEffects": false,
"types": "dist/types/src/entry.esm.d.ts"
}