-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
85 lines (85 loc) · 2.61 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
{
"name": "@prefecthq/prefect-ui-library",
"version": "3.11.30",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/PrefectHQ/prefect-ui-library.git"
},
"bugs": {
"url": "https://github.com/PrefectHQ/prefect-ui-library/issues"
},
"homepage": "https://github.com/PrefectHQ/prefect-ui-library#readme",
"keywords": [
"prefect 2.0",
"vue3"
],
"scripts": {
"build": "vue-tsc && tsc-alias && vite build",
"changelog": "auto-changelog --package --commit-limit 0",
"dev": "vue-tsc -w & tsc-alias -w & vite build -w",
"lint:fix": "eslint src --fix",
"lint": "eslint src",
"test": "vitest",
"validate:types": "vue-tsc --noEmit",
"version": "npm run changelog && git add CHANGELOG.md",
"release": "./prefect-ui-library-release"
},
"main": "./dist/prefect-ui-library.umd.js",
"module": "./dist/prefect-ui-library.mjs",
"exports": {
"./src/*": "./src/*",
"./dist/*": "./dist/*",
".": {
"import": "./dist/prefect-ui-library.mjs",
"require": "./dist/prefect-ui-library.umd.js"
}
},
"files": [
"dist",
"src"
],
"types": "./dist/types/src/index.d.ts",
"dependencies": {
"@prefecthq/graphs": "2.4.1",
"axios": "1.7.4",
"cronstrue": "^2.52.0",
"d3": "7.9.0",
"date-fns": "4.1.0",
"date-fns-tz": "3.2.0",
"lodash.isequal": "4.5.0",
"lodash.merge": "4.6.2"
},
"devDependencies": {
"@prefecthq/eslint-config": "1.0.32",
"@types/d3": "7.4.3",
"@types/lodash.camelcase": "4.3.9",
"@types/lodash.debounce": "4.0.9",
"@types/lodash.isequal": "^4.5.8",
"@types/lodash.merge": "4.6.9",
"@types/node": "^22.10.2",
"@types/prismjs": "^1.26.5",
"@vitejs/plugin-vue": "5.2.1",
"auto-changelog": "^2.5.0",
"autoprefixer": "10.4.20",
"eslint": "8.57.1",
"lodash.camelcase": "4.3.0",
"lodash.debounce": "4.0.8",
"postcss": "8.4.49",
"tailwindcss": "3.4.16",
"tsc-alias": "1.8.10",
"typescript": "5.6.3",
"vite": "5.4.11",
"vite-svg-loader": "^5.1.0",
"vitest": "^2.1.8",
"vue-tsc": "^2.1.10"
},
"peerDependencies": {
"@prefecthq/prefect-design": "^2.14.15",
"@prefecthq/vue-charts": "^2.0.3",
"@prefecthq/vue-compositions": "^1.11.4",
"vee-validate": "^4.7.0",
"vue": "^3.5.0",
"vue-router": "^4.3.0"
}
}