-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
95 lines (95 loc) · 3.05 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
88
89
90
91
92
93
94
95
{
"name": "v-image",
"version": "3.1.2",
"description": "Tiny little component for input type=file.",
"main": "./dist/v-image.js",
"module": "./dist/v-image.js",
"umd": "./dist/v-image.umd.cjs",
"unpkg": "./dist/v-image.cjs",
"jsdelivr": "./dist/v-image.cjs",
"cdn": "./dist/v-image.min.js",
"exports": {
".": {
"import": "./dist/v-image.js",
"require": "./dist/v-image.umd.cjs"
}
},
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"build": "vite build && vue-tsc --declaration --emitDeclarationOnly && prettier --write dist/*{cjs,js,ts}",
"test": "echo 'Add Tests'",
"lint": "bun run lint:prettier && bun run lint:eslint && bun run lint:css",
"lintfix": "bun run lint:prettier:fix && bun run lint:eslint:fix && bun run lint:css:fix",
"lint:js": "bun run lint:eslint && bun run lint:prettier",
"lint:eslint": "eslint `{,!(node_modules|dist)/**/}*.{js,ts,vue}`",
"lint:eslint:fix": "eslint --fix `{,!(node_modules|dist)/**/}*.{js,ts,vue}`",
"lint:prettier": "prettier --check `{,!(node_modules|dist)/**/}*.{js,ts,vue}`",
"lint:prettier:fix": "prettier --write `{,!(node_modules|dist)/**/}*.{js,ts,vue}`",
"lint:css": "stylelint `{,!(node_modules|dist)/**/}*.{css,scss,vue}`",
"lint:css:fix": "stylelint --fix `{,!(node_modules|dist)/**/}*.{css,scss,vue}`",
"prepare": "is-ci || husky",
"release": "shipjs prepare",
"release:dry": "shipjs prepare --dry-run",
"release:auto": "shipjs prepare --yes"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/node": "^22.1.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.14.1",
"@vinayakkulkarni/prettier-config-vue": "^1.0.0",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/runtime-dom": "^3.4.31",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.7.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-vue": "^9.26.0",
"husky": "^9.1.2",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"sass": "^1.77.5",
"shipjs": "^0.26.4",
"stylelint": "16.10.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-prettier": "5.0.2",
"typescript": "^5.5.3",
"vite": "^5.2.12",
"vue": "^3.4.27",
"vue-tsc": "^2.0.17"
},
"keywords": [
"vuejs",
"image",
"vue3",
"input-image"
],
"author": {
"name": "Vinayak Kulkarni",
"email": "inbox.vinayak@gmail.com",
"url": "https://vinayakkulkarni.dev"
},
"license": "MIT",
"engines": {
"node": ">=18.13.0",
"npm": ">=9.0.0"
},
"private": false,
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/vinayakkulkarni/v-image.git"
},
"bugs": {
"url": "https://github.com/vinayakkulkarni/v-image/issues"
},
"homepage": "https://github.com/vinayakkulkarni/v-image#readme"
}