-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.84 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.84 KB
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
{
"name": "aurea-ui",
"version": "1.0.0",
"description": "Vue 3 component library focused on accessibility and design",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/types/index.d.ts"
},
"./dist/index.css": "./dist/index.css"
},
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"keywords": [
"vue3",
"ui",
"component-library",
"acessibilidade",
"design-system"
],
"author": "Matheus Faria",
"license": "MIT",
"scripts": {
"dev": "vite",
"types": "vue-tsc --declaration --emitDeclarationOnly --project tsconfig.app.json",
"build": "npm run types && vite build",
"type-check": "vue-tsc --noEmit",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.7.2",
"pinia": "^3.0.1",
"vue": "^3.5.13"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.6",
"@storybook/addon-a11y": "^8.6.12",
"@storybook/addon-essentials": "^8.6.12",
"@storybook/addon-onboarding": "^8.6.12",
"@storybook/blocks": "^8.6.12",
"@storybook/experimental-addon-test": "^8.6.12",
"@storybook/test": "^8.6.12",
"@storybook/vue3": "^8.6.12",
"@storybook/vue3-vite": "^8.6.12",
"@tsconfig/node22": "^22.0.1",
"@types/node": "^22.14.0",
"@vitejs/plugin-vue": "^5.2.3",
"@vitest/browser": "^3.1.1",
"@vitest/coverage-v8": "^3.1.1",
"@vue/compiler-sfc": "^3.5.13",
"@vue/tsconfig": "^0.7.0",
"npm-run-all2": "^7.0.2",
"playwright": "^1.52.0",
"prettier": "3.5.3",
"sass": "^1.87.0",
"storybook": "^8.6.12",
"typescript": "~5.8.0",
"vite": "^6.2.4",
"vite-plugin-dts": "^3.9.1",
"vite-plugin-vue-devtools": "^7.7.2",
"vitest": "^3.1.1",
"vue-tsc": "^2.2.10"
}
}