-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.53 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
93
94
95
96
97
98
99
100
{
"name": "fir-vue",
"private": false,
"version": "1.2.0",
"description": "A simple set of components for prototypes and small own projects on Vue 3.",
"main": "./lib/fir-vue.umd.js",
"module": "./lib/fir-vue.es.js",
"exports": {
".": {
"types": "./lib/main.d.ts",
"import": "./lib/fir-vue.es.js",
"require": "./lib/fir-vue.umd.js"
},
"./**/*": {
"types": "./lib/main.d.ts",
"import": "./lib/fir-vue.es.js",
"require": "./lib/fir-vue.umd.js"
},
"./lib/style.css": {
"import": "./lib/style.css",
"require": "./lib/style.css"
}
},
"files": [
"lib"
],
"keywords": [
"ui-kit",
"vue3"
],
"author": "B-Dmitriy <[email protected]>",
"license": "MIT",
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": ">=20.8.1"
},
"scripts": {
"build": "vue-tsc && vite build",
"dev": "storybook dev -p 6006",
"storybook": "storybook -p 6006",
"build-storybook": "storybook build",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix"
},
"dependencies": {
"vue": "3.5.12"
},
"devDependencies": {
"@chromatic-com/storybook": "3.2.2",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "11.0.1",
"@storybook/addon-essentials": "8.4.1",
"@storybook/addon-interactions": "8.4.1",
"@storybook/addon-onboarding": "8.4.1",
"@storybook/blocks": "8.4.1",
"@storybook/test": "8.4.1",
"@storybook/vue3": "8.4.1",
"@storybook/vue3-vite": "8.4.1",
"@vitejs/plugin-vue": "5.1.4",
"@vue/eslint-config-typescript": "14.1.3",
"eslint": "9.14.0",
"eslint-plugin-vue": "9.30.0",
"semantic-release": "24.2.0",
"storybook": "8.4.1",
"typescript": "5.6.3",
"vite": "5.4.10",
"vite-plugin-dts": "4.3.0",
"vue-tsc": "2.1.10"
},
"release": {
"branches": [
"main"
],
"repositoryUrl": "[email protected]:ibeloyar/fir-ui.git",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "docs/CHANGELOG.md"
}
],
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"package-lock.json",
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}