-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.59 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.59 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
{
"name": "miru.ink",
"version": "0.0.26",
"description": "A Open-Source Vue3 / tailwind CSS component framework and function library.",
"keywords": [
"ui",
"front-end",
"design",
"framework",
"vue"
],
"homepage": "https://miru.ink",
"license": "MIT",
"author": "rat.md <info@rat.md> (https://rat.md)",
"bugs": {
"url": "https://www.github.com/ratmd/miru",
"email": "info@rat.md"
},
"repository": {
"type": "git",
"url": "https://github.com/ratmd/miru"
},
"funding": [
"https://www.buymeacoffee.com/ratmd"
],
"main": "index.js",
"type": "module",
"engines": {
"node": "^22"
},
"scripts": {
"dev": "vite dev --host --cors",
"build": "run-p type-check build-only",
"build-only": "vite build",
"watch": "vite build --watch",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore --ignore-path .eslintignore",
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"story:dev": "histoire dev --host",
"story:build": "histoire build",
"story:preview": "histoire preview",
"test": "vitest"
},
"dependencies": {
"@floating-ui/vue": "^1.1.6",
"polyfill-crypto-methods": "^0.2.0",
"valibot": "^0.42.1"
},
"devDependencies": {
"@histoire/plugin-vue": "^0.17.17",
"@rushstack/eslint-patch": "^1.11.0",
"@tailwindcss/typography": "^0.5.16",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^22.13.10",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/eslint-config-typescript": "^14.5.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"autoprefixer": "^10.4.21",
"eslint": "^9.22.0",
"eslint-plugin-vue": "^9.33.0",
"histoire": "^0.17.17",
"npm-run-all2": "^6.2.6",
"postcss": "^8.5.3",
"postcss-import": "^16.1.0",
"rollup": "^4.35.0",
"tailwindcss": "^3.4.17",
"typescript": "~5.6.3",
"vite": "^5.4.14",
"vite-plugin-dts": "^4.5.3",
"vitepress": "^1.6.3",
"vitest": "^2.1.9",
"vue": "^3.5.13",
"vue-tsc": "^2.2.8"
},
"peerDependencies": {
"postcss": "^8.3.0",
"postcss-import": "^16.0.0",
"tailwindcss": "^3.3.0",
"vue": "^3.4.0"
}
}