-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.73 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
{
"name": "bitboss-ui",
"version": "0.0.1",
"main": "./dist/bitboss-ui.umd.js",
"module": "./dist/bitboss-ui.es.js",
"exports": {
".": {
"import": "./dist/bitboss-ui.es.js",
"require": "./dist/bitboss-ui.umd.js"
},
"./components/*": "./src/components/standalone/*.vue",
"./components/inertia/*": "./src/components/inertia/*.vue",
"./composables/*": "./src/composables/*.ts",
"./dist/*": "./dist/*",
"./themes/default/*": "./src/assets/css/themes/default/*"
},
"files": [
"dist",
"src/assets/css/themes",
"src/components",
"src/composables"
],
"scripts": {
"build": "run-s build-only postcss-build-pre postcss-build",
"build-prod": "run-s build-only postcss-build-pre postcss-build-prod",
"preview": "vite preview --port 4173",
"build-only": "vite build",
"build-css": "run-s postcss-build-pre postcss-build",
"postcss-build-pre": "postcss src/assets/css/themes/default/index.css -o dist/default-theme.css --env pre",
"postcss-build": "postcss dist/default-theme.css -o dist/default-theme.css",
"postcss-build-prod": "postcss dist/default-theme.css -o dist/default-theme.css --env production",
"type-check": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@headlessui/vue": "^1.6.5",
"@heroicons/vue": "^1.0.6",
"@popperjs/core": "^2.11.5",
"@vueform/multiselect": "^2.4.2",
"vue": "^3.2.36"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@rushstack/eslint-patch": "^1.1.0",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/builder-vite": "^0.2.0",
"@storybook/testing-library": "0.0.13",
"@storybook/vue3": "^6.5.9",
"@vitejs/plugin-vue": "^2.3.3",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"@vue/tsconfig": "^0.1.3",
"autoprefixer": "^10.4.7",
"babel-loader": "^8.2.5",
"cssnano": "^5.1.12",
"eslint": "^8.5.0",
"eslint-plugin-vue": "^8.2.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"postcss-at-rules-variables": "^0.3.0",
"postcss-cli": "^9.1.0",
"postcss-conditionals": "^2.1.0",
"postcss-each": "^1.1.0",
"postcss-import": "^14.1.0",
"postcss-mixins": "^9.0.3",
"postcss-nested": "^5.0.6",
"prettier": "^2.5.1",
"tailwindcss": "^3.1.3",
"typescript": "~4.7.2",
"vite": "^2.9.9",
"vite-plugin-dts": "^1.2.0",
"vue-loader": "^16.8.3",
"vue-tsc": "^0.35.2"
}
}