-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.42 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.42 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
{
"name": "introxd-components",
"type": "module",
"version": "0.0.10",
"private": true,
"packageManager": "pnpm@10.11.1",
"author": "imba97",
"license": "MIT",
"homepage": "https://docs.introxd.com",
"bugs": {
"url": "https://github.com/introxd/components/issues"
},
"keywords": [
"introxd",
"vue3",
"components"
],
"scripts": {
"build": "rimraf packages/*/dist --glob && pnpm -F @introxd/* run build",
"release": "bumpp -r",
"lint": "eslint --cache",
"docs:dev": "pnpm -F introxd-docs run docs:dev",
"docs:build": "pnpm -F introxd-docs run docs:build",
"docs:preview": "pnpm -F introxd-docs run docs:preview",
"bc": "pnpm -F @introxd/components run build",
"clean": "rimraf node_modules && rimraf --glob packages/*/node_modules",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@iconify/json": "^2.2.346",
"@imba97/eslint-config": "^0.0.6",
"@types/node": "^22.15.30",
"bumpp": "^10.1.1",
"eslint": "^9.28.0",
"jiti": "^2.4.2",
"lint-staged": "^16.1.0",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.13.0",
"typescript": "5.5.4",
"unocss": "^66.1.3",
"unplugin-auto-import": "^19.3.0",
"unplugin-vue-components": "^28.7.0",
"vite": "^6.3.5",
"vite-plugin-optimize-exclude": "^0.0.1"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --cache --fix"
}
}