Files
knowai/package.json
tobegold574 382e3aff21 feat(reset): 以构造器模式重构
- 加了大文件传输自定义分片协议

BREAKING CHANGES: 0.1.0(latest)
2025-11-30 20:27:53 +08:00

39 lines
955 B
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"name": "@knowai/core",
"version": "0.1.0",
"type": "module",
"description": "Knowai核心库提供API服务、客户端、装饰器、类型定义等。",
"files": [
"dist"
],
"publishConfig": { "access": "public" },
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"type-check": "tsc --noemit",
"build": "tsc --project tsconfig.json",
"build:single": "tsc",
"dev": "tsc --watch",
"test": "vitest --run",
"lint": "eslint .",
"clean": "rm -rf dist"
},
"dependencies": {
"axios": "^1.11.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/lodash": "^4.14.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.46.3",
"@typescript-eslint/parser": "^8.46.3",
"@vitest/coverage-v8": "^0.34.1",
"eslint": "^9.39.1",
"typescript": "^5.2.0",
"vitest": "^0.34.1"
}
}