mirror of
https://github.com/workos/skills.git
synced 2026-09-14 20:07:08 +08:00
e23f8f9019
Move entry point source to src/index.ts, compile to dist/ via tsconfig.build.json. Paths resolve back to plugins/workos/ from the package root. Consumers get proper .js + .d.ts instead of requiring tsx. - Add build script and prepublishOnly hook - Add build step to release workflow - Update exports to point at dist/ - Include dist/ in files array
57 lines
1.5 KiB
JSON
57 lines
1.5 KiB
JSON
{
|
|
"name": "@workos/skills",
|
|
"packageManager": "pnpm@10.27.0",
|
|
"version": "0.2.1",
|
|
"description": "WorkOS Skills for AI coding agents — AuthKit, SSO, Directory Sync, RBAC, and more",
|
|
"keywords": [
|
|
"ai-agents",
|
|
"authkit",
|
|
"claude-code",
|
|
"skills",
|
|
"sso",
|
|
"workos"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/workos/skills"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"plugins"
|
|
],
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.build.json",
|
|
"prepublishOnly": "pnpm build",
|
|
"eval": "npx tsx scripts/eval.ts",
|
|
"eval:label": "npx tsx scripts/eval-label.ts",
|
|
"eval:diff": "npx tsx scripts/eval-diff.ts",
|
|
"eval:calibrate": "npx tsx scripts/eval-calibrate.ts",
|
|
"test": "vitest run",
|
|
"format": "oxfmt .",
|
|
"format:check": "prettier --check .",
|
|
"lint": "oxlint",
|
|
"lint:fix": "oxlint --fix",
|
|
"build:query-spec": "esbuild plugins/workos/skills/workos-widgets/references/scripts/query-spec.ts --bundle --platform=node --format=cjs --outfile=plugins/workos/skills/workos-widgets/references/scripts/query-spec.cjs"
|
|
},
|
|
"dependencies": {
|
|
"yaml": "^2.8.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.0.0",
|
|
"esbuild": "^0.27.3",
|
|
"oxfmt": "^0.35.0",
|
|
"oxlint": "^1.50.0",
|
|
"tsx": "^4.19.0",
|
|
"typescript": "^5.7.0",
|
|
"vitest": "^4.0.18"
|
|
}
|
|
}
|