-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.61 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
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@dwmt/modalis",
"version": "2.1.0",
"description": "A very powerful modal system for Vue",
"keywords": [
"modal",
"vue",
"component",
"system",
"dwmt"
],
"homepage": "https://github.com/dwmt/modalis#readme",
"bugs": {
"url": "https://github.com/dwmt/modalis/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/dwmt/modalis.git"
},
"license": "MIT",
"contributors": [
{
"name": "Lajos Kovács",
"email": "lajoskvcs@icloud.com",
"url": "https://lajoskvcs.com"
},
{
"name": "Gergely Szabó",
"email": "gergely0116@gmail.com",
"url": "https://github.com/Baxi0116"
}
],
"type": "module",
"exports": {
".": {
"import": "./dist/modalis.js",
"require": "./dist/modalis.cjs"
}
},
"main": "./dist/modalis.cjs",
"module": "./dist/modalis.js",
"types": "./dist/modalis.d.ts",
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"build": "del-cli dist && vite build",
"commit": "cz",
"dev": "vite",
"format": "prettier --check \"src/**/*.{js,jsx,ts,tsx,css,json,md,vue}\"",
"format:fix": "prettier --check \"src/**/*.{js,jsx,ts,tsx,css,json,md,vue}\" --write",
"lint": "eslint src/development/ src/ --ext js,jsx,ts,tsx,vue",
"lint:fix": "eslint src/development/ src/ --ext js,jsx,ts,tsx,vue --fix",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"nanoid": "^4.0.0"
},
"devDependencies": {
"@prettier/plugin-pug": "^2.3.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/node": "^18.11.9",
"@typescript-eslint/parser": "^5.43.0",
"@vitejs/plugin-vue": "3.2.0",
"@vitejs/plugin-vue-jsx": "^2.1.1",
"@vue/compiler-sfc": "^3.2.45",
"commitizen": "^4.2.5",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"del-cli": "^5.0.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unicorn": "^44.0.2",
"eslint-plugin-vue": "^9.7.0",
"husky": "^8.0.0",
"prettier": "^2.7.1",
"prettier-plugin-packagejson": "^2.3.0",
"pug": "^3.0.2",
"rimraf": "^3.0.2",
"sass": "^1.56.1",
"semantic-release": "^19.0.5",
"stylus": "^0.59.0",
"typescript": "^4.9.3",
"vite": "^3.2.4",
"vite-plugin-checker": "^0.5.1",
"vite-plugin-dts": "^1.7.1",
"vue": "^3.2.45",
"vue-tsc": "^1.0.9"
},
"peerDependencies": {
"vue": "^3.2.45"
}
}