-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.03 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
{
"name": "bocins",
"version": "2.3.0",
"description": "UI components for Vue 3",
"type": "module",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "eslint src && stylelint 'src/**/*.scss'",
"build": "vite build",
"prepare": "npm run build",
"dev": "storybook dev -p 6006",
"build:stories": "storybook build",
"postinstall": "if [ \"$STORYBOOK\" = \"true\" ]; then exit 0; fi; node dist/postinstall.cjs"
},
"keywords": [
"vue",
"components",
"ui",
"style"
],
"author": "Marc Vilella <[email protected]> (https://github.com/markusand)",
"repository": {
"type": "git",
"url": "git+https://github.com/markusand/bocins.git"
},
"bugs": {
"url": "https://github.com/markusand/bocins/issues"
},
"homepage": "https://bocins.netlify.app/",
"license": "ISC",
"devDependencies": {
"@chromatic-com/storybook": "^1.2.25",
"@storybook/addon-essentials": "^8.0.5",
"@storybook/addon-interactions": "^8.0.5",
"@storybook/addon-links": "^8.0.5",
"@storybook/blocks": "^8.0.5",
"@storybook/test": "^8.0.5",
"@storybook/vue3": "^8.0.5",
"@storybook/vue3-vite": "^8.0.5",
"@types/node": "^20.2.3",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/tsconfig": "^0.5.1",
"eslint": "^8.21.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.4.0",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-vue": "^9.3.0",
"sass": "^1.54.3",
"storybook": "^8.0.5",
"stylelint": "^16.3.1",
"stylelint-config-html": "^1.1.0",
"stylelint-config-standard-scss": "^13.0.0",
"typescript": "^5.0.4",
"vite": "^5.2.7",
"vite-plugin-dts": "^3.5.3",
"vue": "^3.3.4"
},
"peerDependencies": {
"vue": "^3.3.0"
}
}