-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.38 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
{
"name": "@incutonez/core-ui",
"description": "Core UI Components built with PrimeVue",
"type": "module",
"version": "1.3.2",
"module": "dist/index.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/incutonez/core-ui.git"
},
"author": "[email protected]",
"keywords": [
"primevue",
"typescript",
"vue",
"vite"
],
"scripts": {
"dev": "vite --config vite/config.dev.ts",
"build": "npx tsx makeIndex.ts && vite build --config vite/config.prod.ts",
"prepare": "husky"
},
"dependencies": {
"@material-symbols/svg-400": "^0.23.0",
"just-clone": "^6.2.0",
"just-safe-get": "^4.2.0",
"lodash-es": "^4.17.21",
"mime-types": "^2.1.35",
"path-browserify": "^1.0.1",
"primevue": "^4.0.7",
"vite-svg-loader": "^5.1.0",
"vue": "^3.5.6",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@incutonez/eslint-plugin": "^1.1.4",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@stylistic/eslint-plugin-ts": "^2.8.0",
"@types/lodash-es": "^4.17.12",
"@types/mime-types": "^2.1.4",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"@vitejs/plugin-vue": "^5.1.4",
"autoprefixer": "^10.4.20",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tailwindcss": "^3.17.4",
"eslint-plugin-vue": "^9.28.0",
"glob": "^11.0.0",
"globals": "^15.9.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"semantic-release": "^24.1.1",
"tailwindcss": "^3.4.12",
"typescript": "^5.6.2",
"typescript-eslint": "^8.6.0",
"vite": "^5.4.6",
"vite-plugin-css-injected-by-js": "^3.5.1",
"vite-plugin-dts": "^4.2.1",
"vue-tsc": "^2.1.6"
},
"lint-staged": {
"src/*.{js,mjs,cjs,jsx,ts,tsx,vue}": [
"npx eslint --fix"
]
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
"@semantic-release/git",
"@semantic-release/github"
]
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}