-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.97 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 2.97 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
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
{
"name": "@story-cms/ui",
"version": "3.2.0",
"description": "Components for the StoryCMS user interface",
"repository": "https://github.com/story-cms/ui",
"bugs": "https://github.com/story-cms/ui/issues",
"type": "module",
"license": "MIT",
"keywords": [
"StoryCMS",
"ui",
"components"
],
"author": "StoryCMS",
"private": false,
"main": "./dist/core.cjs",
"module": "./dist/core.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"import": "./dist/core.js",
"require": "./dist/core.cjs",
"types": "./dist/src/index.d.ts"
},
"./main.css": "./dist/main.css",
"./styles.css": "./dist/styles.css"
},
"files": [
"dist",
"src/components"
],
"scripts": {
"dev": "histoire dev",
"cat:build": "histoire build",
"preview": "histoire preview",
"lib:dev": "vite",
"build": "vue-tsc && vite build",
"lib:preview": "vite preview",
"test:unit": "npx playwright test tests/unit/*.ts",
"test:e2e": "npx playwright test tests/e2e/*.ts",
"test": "npm run test:unit && npm run test:e2e",
"lint": "eslint --ext .ts,vue --ignore-path .gitignore .",
"format": "prettier --write .",
"prepare": "npm run build"
},
"peerDependencies": {
"@aws-sdk/client-s3": "^3.379.1",
"@aws-sdk/lib-storage": "^3.379.1",
"@rive-app/canvas": "^1.1.5",
"axios": "^1.4.0",
"easymde": "^2.18.0",
"luxon": "^3.3.0",
"pinia": "^2.0.27",
"vue": "^3.3.8"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.379.1",
"@aws-sdk/lib-storage": "^3.379.1",
"@headlessui/vue": "^1.7.14",
"@inertiajs/vue3": "^1.0.10",
"@rive-app/canvas": "^1.1.5",
"axios": "^1.4.0",
"easymde": "^2.18.0",
"luxon": "^3.3.0",
"pinia": "^2.0.27"
},
"devDependencies": {
"@histoire/plugin-vue": "^0.17.17",
"@playwright/test": "^1.36.0",
"@tailwindcss/forms": "^0.5.3",
"@types/luxon": "^3.3.0",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.2",
"autoprefixer": "^10.4.13",
"eslint": "^8.56.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.9.0",
"histoire": "^0.17.17",
"jest": "^29.3.1",
"postcss": "^8.4.31",
"prettier": "^2.8.3",
"prettier-plugin-tailwindcss": "^0.3.0",
"tailwindcss": "^3.2.4",
"typescript": "^5.4.4",
"vite": "^5.2.0",
"vite-plugin-dts": "^3.6.3",
"vue": "^3.3.8",
"vue-tsc": "^2.0.19"
},
"prettier": {
"useTabs": false,
"tabWidth": 2,
"semi": true,
"htmlWhitespaceSensitivity": "css",
"singleQuote": true,
"printWidth": 90,
"trailingComma": "all",
"overrides": [
{
"files": "*.md",
"options": {
"proseWrap": "always"
}
}
],
"plugins": [
"prettier-plugin-tailwindcss"
]
}
}