Files
simapi-vue/package.json
T
xrain 85020ccbf3
Publish to npm / publish (push) Failing after 9s
feat: initial release
2026-03-31 06:40:07 +08:00

47 lines
938 B
JSON

{
"name": "@simcu/simapi",
"version": "1.0.1",
"description": "轻量 Vue3 HTTP 客户端库,基于 Axios + Pinia",
"main": "dist/simapi.umd.cjs",
"module": "dist/simapi.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"types": "vue-tsc --declaration --emitDeclarationOnly",
"lint": "vue-tsc --noEmit"
},
"keywords": [
"vue3",
"pinia",
"http",
"axios",
"api",
"rest"
],
"author": "simcu",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:simcu/simapi-vue.git"
},
"dependencies": {
"axios": "^1.6.0"
},
"peerDependencies": {
"vue": "^3.0.0",
"pinia": "^2.0.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.0",
"typescript": "^5.0.0",
"vite": "^5.0.0",
"vue": "^3.4.0",
"vue-tsc": "^2.0.0"
}
}