-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
87 lines (87 loc) · 2.55 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
{
"name": "@vuetify/one",
"version": "2.0.0",
"private": false,
"type": "module",
"license": "MIT",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./styles": {
"import": "./dist/style.css"
},
"./subpath/*": "./dist/subpath/*.js"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"build:one": "vite build --config vite.build.config.ts && pnpm build:types",
"build:dev": "vite build --mode development --config vite.build.config.ts ",
"build:types": "rimraf types-temp && vue-tsc --pretty -p tsconfig.json && rollup --config rollup.types.config.js && rimraf types-temp",
"release": "pnpm build:dev && pnpm version && git push --follow-tags",
"watch": "pnpm build:dev --watch",
"preview": "vite preview",
"lint": "eslint . --ext .ts,.vue --fix",
"test": "vitest",
"coverage": "vitest run --coverage",
"prepublishOnly": "pnpm build:one",
"postversion": "git push --follow-tags"
},
"peerDependencies": {
"@mdi/js": "7.4.47",
"lodash-es": "^4.17.21",
"vue": "^3.5.13",
"vuetify": "^3.8.0"
},
"devDependencies": {
"@babel/types": "^7.26.10",
"@mdi/js": "7.4.47",
"@rollup/plugin-alias": "^5.1.1",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.13.13",
"@vitejs/plugin-vue": "^5.2.3",
"@vitest/eslint-plugin": "^1.1.39",
"@vueuse/router": "^13.0.0",
"conventional-changelog-cli": "^5.0.0",
"conventional-changelog-vuetify": "^1.2.2",
"conventional-github-releaser": "^3.1.5",
"core-js": "^3.41.0",
"date-fns": "^4.1.0",
"eslint": "^9.24.0",
"eslint-config-flat-gitignore": "^2.1.0",
"eslint-config-vuetify": "^3.0.3",
"jsdom": "^26.0.0",
"lodash-es": "^4.17.21",
"pinia": "^3.0.1",
"rimraf": "^6.0.1",
"roboto-fontface": "*",
"rollup": "^4.37.0",
"rollup-plugin-dts": "^6.2.1",
"sass": "^1.86.0",
"swetrix": "^3.5.4",
"taze": "^19.0.2",
"typescript": "5.8.2",
"unplugin-auto-import": "^19.1.1",
"unplugin-fonts": "^1.3.1",
"unplugin-vue-components": "^28.4.1",
"unplugin-vue-router": "^0.12.0",
"vite": "^6.2.3",
"vite-plugin-vue-layouts-next": "^0.0.9",
"vite-plugin-vuetify": "^2.1.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.9",
"vue": "^3.5.13",
"vue-router": "^4.5.0",
"vue-tsc": "^2.2.8",
"vuetify": "^3.8.0"
},
"packageManager": "[email protected]"
}