mirror of
https://github.com/linshenkx/prompt-optimizer.git
synced 2026-05-06 21:50:27 +08:00
- Export favorite and data-manager backup packages with referenced resources - Normalize backup resource metadata during package creation and import - Add selective package import controls in the data manager UI - Cover package normalization and selective import behavior with focused tests
79 lines
2.2 KiB
JSON
79 lines
2.2 KiB
JSON
{
|
|
"name": "@prompt-optimizer/ui",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"license": "AGPL-3.0-only",
|
|
"type": "module",
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/src/index.d.ts",
|
|
"style": "./dist/style.css",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/src/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.cjs"
|
|
},
|
|
"./style.css": "./dist/style.css",
|
|
"./dist/style.css": "./dist/style.css"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"readme": "On Windows, use semicolons (;) instead of && as command separators, or run the build:win script.",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build:bundle": "vite build",
|
|
"build:types": "vue-tsc -p tsconfig.build.json",
|
|
"build": "pnpm run build:bundle && pnpm run build:types",
|
|
"build:win": "pnpm run build",
|
|
"test": "vitest run",
|
|
"typecheck": "vue-tsc --noEmit",
|
|
"lint": "eslint src --ext .ts,.vue",
|
|
"lint:fix": "eslint src --ext .ts,.vue --fix"
|
|
},
|
|
"dependencies": {
|
|
"@codemirror/autocomplete": "^6.20.1",
|
|
"@codemirror/language": "^6.12.3",
|
|
"@codemirror/state": "^6.6.0",
|
|
"@codemirror/view": "^6.40.0",
|
|
"@prompt-optimizer/core": "workspace:*",
|
|
"@vicons/tabler": "^0.13.0",
|
|
"@vueuse/core": "^14.2.1",
|
|
"codemirror": "^6.0.2",
|
|
"dompurify": "^3.3.3",
|
|
"fflate": "^0.8.2",
|
|
"highlight.js": "^11.11.1",
|
|
"markdown-it": "^14.1.1",
|
|
"naive-ui": "^2.44.1",
|
|
"pinia": "^3.0.4",
|
|
"uuid": "^13.0.0",
|
|
"vue": "^3.5.31",
|
|
"vue-i18n": "^11.3.0",
|
|
"vue-router": "^5.0.4"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^10.0.1",
|
|
"@tailwindcss/forms": "^0.5.11",
|
|
"@tailwindcss/postcss": "^4.2.2",
|
|
"@tailwindcss/typography": "^0.5.19",
|
|
"@types/node": "^22.19.15",
|
|
"@typescript-eslint/eslint-plugin": "^8.57.2",
|
|
"@typescript-eslint/parser": "^8.57.2",
|
|
"@vitejs/plugin-vue": "^6.0.5",
|
|
"@vue/test-utils": "^2.4.6",
|
|
"@vue/tsconfig": "^0.9.1",
|
|
"eslint": "^10.1.0",
|
|
"eslint-plugin-vue": "^10.8.0",
|
|
"globals": "^17.4.0",
|
|
"jsdom": "^29.0.1",
|
|
"postcss": "^8.5.8",
|
|
"tailwindcss": "^4.2.2",
|
|
"typescript": "^5.9.3",
|
|
"vite": "^8.0.3",
|
|
"vitest": "^4.1.2",
|
|
"vue-eslint-parser": "^10.4.0",
|
|
"vue-tsc": "^3.2.6"
|
|
}
|
|
}
|