-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.74 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.74 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
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
88
89
90
91
92
93
{
"name": "@j2only/pincode",
"version": "0.6.4",
"type": "module",
"description": "Vue.js pincode input component. Written entirely on Vue 3 Composition API with Typescript and Vite.",
"author": "Anton Zolotov <antonzolotov@outlook.com>",
"files": [
"dist"
],
"main": "dist/pincode.umd.js",
"module": "dist/pincode.es.js",
"exports": {
".": {
"import": {
"default": "./dist/pincode.es.js",
"types": "./dist/VuePincode.vue.d.ts"
},
"require": {
"default": "./dist/pincode.umd.js",
"types": "./dist/VuePincode.vue.d.ts"
}
}
},
"types": "dist/VuePincode.vue.d.ts",
"scripts": {
"dev": "vite",
"build": "vue-tsc --p ./tsconfig.build.json && vite build",
"build:demo": "vue-tsc && vite build --config vite.config.demo.ts",
"preview": "vite preview",
"lint": "run lint:js && run lint:style",
"lint:js": "eslint --fix --ext .js,.vue --ignore-path .eslintignore .",
"lint:style": "stylelint **/*.{vue,css,scss} --ignore-path .gitignore --fix --config ./.stylelintrc-format",
"prepublishOnly": "yarn build"
},
"dependencies": {
"vue": "^3.5.13"
},
"devDependencies": {
"@stylistic/stylelint-plugin": "^2.1.3",
"@types/eslint": "^8.56.12",
"@types/node": "^20.17.10",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/eslint-config-standard": "^8.0.1",
"@vue/eslint-config-typescript": "^12.0.0",
"eslint": "^8.57.1",
"eslint-plugin-vue": "^9.32.0",
"postcss-html": "^1.7.0",
"sass": "^1.83.0",
"stylelint": "^16.12.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-order": "^6.0.4",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vite-plugin-dts": "^3.9.1",
"vite-plugin-lib-inject-css": "^2.1.1",
"vue-tsc": "^2.1.10"
},
"sideEffects": [
"**/*.css"
],
"publishConfig": {
"access": "public"
},
"packageManager": "yarn@4.5.3",
"license": "MIT",
"homepage": "https://j2only.github.io/pincode/",
"repository": {
"type": "git",
"url": "git+https://github.com/j2only/pincode.git"
},
"bugs": {
"url": "https://github.com/j2only/pincode/issues"
},
"keywords": [
"pincode",
"pin",
"pin code",
"code",
"vue",
"vue3",
"vue.js",
"typescript",
"vue pin",
"j2only",
"joseph2",
"customizable"
],
"directories": {
"lib": "lib",
"test": "tests"
}
}