kopia lustrzana https://github.com/transitive-bullshit/chatgpt-api
50 wiersze
1.1 KiB
JSON
50 wiersze
1.1 KiB
JSON
{
|
|
"name": "@agentic/wikidata",
|
|
"version": "7.0.0",
|
|
"description": "Agentic SDK for Wikidata.",
|
|
"author": "Travis Fischer <travis@transitivebullsh.it>",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/transitive-bullshit/agentic.git"
|
|
},
|
|
"type": "module",
|
|
"source": "./src/index.ts",
|
|
"types": "./dist/index.d.ts",
|
|
"sideEffects": false,
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup --config ../../tsup.config.ts",
|
|
"dev": "tsup --config ../../tsup.config.ts --watch",
|
|
"clean": "del dist",
|
|
"test": "run-s test:*",
|
|
"test:lint": "eslint .",
|
|
"test:typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"ky": "^1.5.0",
|
|
"p-throttle": "^6.1.0",
|
|
"wikibase-sdk": "^10.0.3"
|
|
},
|
|
"peerDependencies": {
|
|
"@agentic/core": "workspace:*",
|
|
"zod": "^3.23.8"
|
|
},
|
|
"devDependencies": {
|
|
"@agentic/core": "workspace:*",
|
|
"@agentic/tsconfig": "workspace:*"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|