Files
2026-07-13 13:39:47 +08:00

46 lines
1.0 KiB
JSON

{
"name": "@mediago/core-sdk",
"version": "0.0.4",
"description": "A starter for creating a TypeScript package.",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/author/library#readme",
"bugs": {
"url": "https://github.com/author/library/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/author/library.git"
},
"author": "caorushizi",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/axios": "^0.14.4",
"@types/node": "^24.9.1",
"bumpp": "^10.3.1",
"tsdown": "^0.15.9",
"typescript": "^5.9.3",
"vitest": "^4.0.1"
},
"dependencies": {
"axios": "^1.15.0",
"eventsource": "^4.0.0",
"mitt": "^3.0.1"
}
}