auth-runtime/package.json

30 lines
568 B
JSON
Raw Normal View History

2026-03-11 23:33:43 +00:00
{
"name": "@clawd/auth-runtime",
"version": "1.1.0",
2026-03-11 23:33:43 +00:00
"description": "Shared TypeScript auth runtime for OpenClaw skills",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",
"clean": "rm -rf dist"
2026-03-11 23:33:43 +00:00
},
"keywords": [
"auth",
"runtime",
"openclaw"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^25.3.3",
"typescript": "^5.9.3"
}
}