-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.98 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
{
"name": "@vasisouv/ryuzo",
"private": false,
"version": "0.0.5",
"description": "A set of reusable components for Vue 3 based on Tailwind CSS",
"keywords": [
"components",
"vue3",
"component library",
"ui kit",
"tailwind"
],
"license": "MIT",
"author": "Vasilis Souvatzis",
"repository": {
"type": "git",
"url": "https://github.com/vasisouv/ryuzo"
},
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"types": "./dist/types/index.d.ts",
"unpkg": "./dist/index.umd.js",
"jsdelivr": "./dist/index.umd.js",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"files": [
"dist"
],
"bugs": "https://github.com/vasisouv/ryuzo/issues",
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"build": "vue-tsc --declaration --emitDeclarationOnly && vite build --mode=prod",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "pnpm clean:coverage && vitest --coverage --mode test"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"peerDependencies": {
"@vue/composition-api": "^1.4.9",
"vue": ">=3.0.0"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^17.0.21",
"@vitejs/plugin-vue": "^2.2.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/tsconfig": "^0.1.3",
"autoprefixer": "^10.4.12",
"c8": "^7.11.0",
"eslint": "^8.11.0",
"eslint-plugin-vue": "^9.5.1",
"happy-dom": "^2.49.0",
"postcss": "^8.4.17",
"prettier": "^2.7.1",
"tailwindcss": "^3.1.8",
"typescript": "^4.5.4",
"vite": "^2.8.0",
"vitepress": "^1.0.0-alpha.19",
"vitest": "^0.7.6",
"vue": "^3.2.31",
"vue-router": "^4.1.5",
"vue-tsc": "^0.40.13"
}
}