-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
87 lines (87 loc) · 2.31 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
{
"name": "@prefecthq/prefect-design",
"workspaces": [
"./demo"
],
"version": "2.14.16",
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/PrefectHQ/prefect-design.git"
},
"keywords": [
"vue",
"vue3",
"typescript",
"prefect"
],
"scripts": {
"serve": "vite --host --mode=demo",
"dev": "vite build -w & vue-tsc -w & tsc-alias -w",
"build": "vite build && vue-tsc && tsc-alias",
"build:demo": "vite build --mode=demo",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"changelog": "auto-changelog --package --commit-limit 0",
"version": "npm run changelog && git add CHANGELOG.md",
"release": "./prefect-design-release"
},
"main": "./dist/prefect-design.umd.js",
"module": "./dist/prefect-design.mjs",
"exports": {
"./src/*": "./src/*",
"./dist/*": "./dist/*",
".": {
"import": "./dist/prefect-design.mjs",
"require": "./dist/prefect-design.umd.js"
}
},
"files": [
"dist",
"src"
],
"types": "./dist/types/src/index.d.ts",
"devDependencies": {
"@prefecthq/eslint-config": "1.0.32",
"@types/dompurify": "^3.0.1",
"@types/marked": "^4.0.8",
"@types/node": "^22.1.0",
"@vitejs/plugin-vue": "5.1.4",
"auto-changelog": "^2.4.0",
"autoprefixer": "^10.4.6",
"eslint": "^8.6.0",
"postcss": "^8.4.13",
"tailwindcss": "^3.0.24",
"tailwindcss-animate": "^1.0.7",
"ts-node": "^10.7.0",
"tsc-alias": "1.8.10",
"typescript": "5.6.3",
"vite": "5.4.11",
"vite-plugin-vue-devtools": "^7.1.3",
"vite-svg-loader": "5.1.0",
"vue-tsc": "2.1.10"
},
"peerDependencies": {
"@prefecthq/vue-compositions": "^1.11.0",
"vue": "^3.5.0",
"vue-router": "^4.1.6"
},
"dependencies": {
"@fontsource-variable/inconsolata": "^5.0.18",
"@fontsource-variable/inter": "^5.0.18",
"@heroicons/vue": "2.1.5",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.0",
"@tailwindcss/typography": "^0.5.2",
"@types/lodash.debounce": "4.0.9",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"date-fns": "4.1.0",
"dompurify": "3.2.2",
"highlight.js": "11.10.0",
"lodash.debounce": "4.0.8",
"marked": "4.3.0",
"radix-vue": "1.9.10",
"tailwindcss-animate": "^1.0.7"
}
}