XuqmGroup-Vue3SDK/package.json

40 行
997 B
JSON

2026-04-21 22:07:29 +08:00
{
"name": "@xuqm/vue3-sdk",
"version": "0.1.0",
"description": "XuqmGroup Vue3 SDK — IM & platform integration for web",
"private": false,
"publishConfig": {
"registry": "https://nexus.xuqinmin.com/repository/npm-hosted/"
},
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
2026-04-21 22:07:29 +08:00
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js"
2026-04-21 22:07:29 +08:00
}
},
"files": ["dist"],
"scripts": {
"dev": "vite build --watch",
"build": "tsc --emitDeclarationOnly && vite build",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage"
2026-04-21 22:07:29 +08:00
},
"peerDependencies": {
"vue": "^3.5.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.2.1",
"typescript": "^5.6.0",
"vite": "^6.0.0",
"vite-plugin-dts": "^4.3.0",
"vue": "^3.5.13"
}
}