mirror of
https://github.com/EasyTier/EasyTier.git
synced 2026-08-06 20:49:46 +00:00
f0d00d6161
* refactor(web): use generated proto network types * fix(core): preserve dumped config flags * test(web): cover config flag save paths * fix(ci): use system protoc before frontend codegen * fix(ci): serialize frontend-lib builds
64 lines
1.8 KiB
JSON
64 lines
1.8 KiB
JSON
{
|
|
"name": "easytier-frontend-lib",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"main": "./dist/easytier-frontend-lib.umd.cjs",
|
|
"module": "./dist/easytier-frontend-lib.js",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/easytier-frontend-lib.js",
|
|
"require": "./dist/easytier-frontend-lib.umd.cjs"
|
|
},
|
|
"./*.css": "./dist/*.css"
|
|
},
|
|
"scripts": {
|
|
"codegen:proto": "node scripts/codegen-proto.mjs",
|
|
"dev": "pnpm codegen:proto && vite",
|
|
"build": "pnpm codegen:proto && vue-tsc -b && vite build",
|
|
"test": "pnpm test:config-ui && pnpm test:network-config",
|
|
"test:config-ui": "pnpm codegen:proto && vitest run --config vitest.config.ts",
|
|
"test:network-config": "pnpm build && node scripts/test-network-config.mjs",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"@primeuix/themes": "^1.2.3",
|
|
"@protobuf-ts/runtime": "2.11.1",
|
|
"@protobuf-ts/runtime-rpc": "2.11.1",
|
|
"@vueuse/core": "^11.1.0",
|
|
"axios": "^1.13.5",
|
|
"chart.js": "^4.5.0",
|
|
"floating-vue": "^5.2",
|
|
"ip-num": "1.5.1",
|
|
"primeicons": "^7.0.0",
|
|
"tailwindcss-primeui": "^0.3.4",
|
|
"ts-md5": "^1.3.1",
|
|
"uuid": "^11.0.2",
|
|
"vue-chartjs": "^5.3.2",
|
|
"vue-i18n": "^10.0.4"
|
|
},
|
|
"devDependencies": {
|
|
"@modyfi/vite-plugin-yaml": "^1.1.0",
|
|
"@protobuf-ts/plugin": "2.11.1",
|
|
"@protobuf-ts/protoc": "2.11.1",
|
|
"@types/node": "^22.8.6",
|
|
"@vitejs/plugin-vue": "^5.1.4",
|
|
"@vue/test-utils": "^2.4.11",
|
|
"autoprefixer": "^10.4.20",
|
|
"happy-dom": "16.8.1",
|
|
"postcss": "^8.4.47",
|
|
"postcss-import": "^16.1.0",
|
|
"postcss-nested": "^7.0.2",
|
|
"tailwindcss": "=3.4.17",
|
|
"typescript": "~5.6.3",
|
|
"vite": "^5.4.21",
|
|
"vite-plugin-dts": "^4.3.0",
|
|
"vitest": "^2.1.9",
|
|
"vue-tsc": "^2.1.10"
|
|
},
|
|
"peerDependencies": {
|
|
"primevue": "^4.3.9",
|
|
"vue": "^3.5.12"
|
|
}
|
|
}
|