-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
131 lines (131 loc) · 3.78 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "atmosphere-ui",
"version": "1.4.0",
"description": "UI for jetstream/inertia and Vue 3",
"type": "module",
"keywords": [
"inertia.js",
"vuejs",
"vue3",
"laravel",
"jetstream"
],
"scripts": {
"dev": "npm run storybook",
"build": "run-p build-only",
"build-only": "npm run create-index-files && vite build",
"type-check": "vue-tsc --noEmit",
"type-gen": "vue-tsc --declaration --emitDeclarationOnly",
"create-index-files": "node scripts/create-index-files.js",
"test:unit": "vitest --environment jsdom",
"test:coverage": "vitest run --coverage",
"storybook": "storybook dev -p 6006",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"release": "npm run build && bumpp --commit --tag --push",
"release-publish-only": "bumpp --commit --tag --push",
"docs:build": "storybook build -o docs",
"chromatic": "npx chromatic --project-token=170dcb534484"
},
"resolutions": {
"jackspeak": "2.1.1"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"floating-vue": "^5.2.2",
"lodash": "^4.17.21",
"mathjs": "^13.2.0",
"vueuse-temporals": "^1.6.0"
},
"peerDependencies": {
"@inertiajs/vue3": "^1.0.0",
"@vueuse/core": "^10.0.0",
"tailwindcss": "^3.0.0",
"vue": "^3.2.0"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@inertiajs/vue3": "^1.2.0",
"@playwright/test": "^1.48.0",
"@rushstack/eslint-patch": "^1.10.4",
"@storybook/addon-actions": "^8.3.5",
"@storybook/addon-essentials": "^8.3.5",
"@storybook/addon-interactions": "^8.3.5",
"@storybook/addon-links": "^8.3.5",
"@storybook/addon-mdx-gfm": "^8.3.5",
"@storybook/test": "^8.3.5",
"@storybook/vue3": "^8.3.5",
"@storybook/vue3-vite": "^8.3.5",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/user-event": "^14.5.2",
"@testing-library/vue": "^8.1.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.12.10",
"@vitejs/plugin-vue": "^4.5.1",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vitest/coverage-c8": "^0.33.0",
"@vitest/coverage-v8": "^1.6.0",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/test-utils": "^2.4.3",
"@vue/tsconfig": "^0.5.1",
"@vueuse/core": "^10.9.0",
"autoprefixer": "^10.4.19",
"axios": "^1.7.7",
"babel-loader": "^9.1.3",
"bumpp": "^9.2.0",
"c8": "^9.1.0",
"date-fns": "^3.6.0",
"eslint": "^9.12.0",
"eslint-plugin-storybook": "^0.9.0",
"eslint-plugin-vue": "^9.29.0",
"glob": "7.1.6",
"jsdom": "^23.2.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.79.5",
"standard-version": "^9.5.0",
"start-server-and-test": "^2.0.8",
"storybook": "^8.3.5",
"tailwindcss": "^3.4.13",
"typescript": "~5.6.3",
"vite": "^4.5.5",
"vite-plugin-dts": "^3.9.1",
"vitest": "^2.1.3",
"vue": "^3.5.12",
"vue-loader": "^17.4.2",
"vue-tsc": "^1.8.27"
},
"main": "src/index.js",
"module": "dist/atmosphere-ui.js",
"files": [
"src/*",
"index.js",
"dist/*"
],
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"author": "Jesus Guerrero",
"license": "MIT",
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jesusantguerrero/atmosphere-ui.git"
},
"sideEffects": false,
"bugs": {
"url": "https://github.com/jesusantguerrero/atmosphere-ui/issues"
},
"homepage": "https://github.com/jesusantguerrero/atmosphere-ui#readme",
"exports": {
".": {
"require": "./dist/index.umd.js",
"import": "./dist/index.js"
},
"./*": "./dist/*"
}
}