-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.45 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.45 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
{
"name": "@prefecthq/prefect-design",
"workspaces": [
"./demo"
],
"version": "2.16.4",
"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",
"validate:types": "vue-tsc --noEmit"
},
"main": "dist/prefect-design.js",
"module": "dist/prefect-design.js",
"types": "dist/src/index.d.ts",
"type": "module",
"exports": {
"./prefect-design.css": "./dist/prefect-design.css",
"./src": "./src",
"./dist": "./dist",
"./tailwind.config": "./src/tailwind.config.ts",
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/prefect-design.js"
}
},
"files": [
"dist",
"src"
],
"devDependencies": {
"@prefecthq/eslint-config": "1.0.32",
"@types/dompurify": "^3.0.1",
"@types/marked": "^4.0.8",
"@types/node": "^24.0.3",
"@vitejs/plugin-vue": "6.0.1",
"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.16",
"typescript": "5.9.2",
"vite": "^7.1.5",
"vite-plugin-vue-devtools": "^8.0.2",
"vite-svg-loader": "5.1.0",
"vue-tsc": "3.0.7"
},
"peerDependencies": {
"@prefecthq/vue-compositions": "^1.12.1",
"vue": "^3.5.21",
"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.7",
"highlight.js": "11.11.1",
"lodash.debounce": "4.0.8",
"marked": "4.3.0",
"radix-vue": "1.9.17",
"tailwindcss-animate": "^1.0.7"
}
}