-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.74 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "workos",
"version": "0.20.1",
"type": "module",
"description": "The Official Workos CLI",
"repository": {
"type": "git",
"url": "https://github.com/workos/cli"
},
"keywords": [
"workos",
"authkit",
"authentication",
"wizard",
"cli",
"setup",
"install",
"oauth",
"sso"
],
"bin": {
"workos": "dist/workos"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "~0.3.0",
"@anthropic-ai/sdk": "^0.112.0",
"@inquirer/prompts": "^8.5.2",
"@napi-rs/keyring": "^1.2.0",
"@workos-inc/node": "^8.7.0",
"@workos/emulate": "^0.2.0",
"@workos/migrations": "^2.4.0",
"@workos/openapi-spec": "^0.45.0",
"@workos/skills": "0.6.1",
"chalk": "^5.6.2",
"diff": "^8.0.3",
"fast-glob": "^3.3.3",
"ink": "^6.8.0",
"jsonc-parser": "^3.3.1",
"open": "^11.0.0",
"react": "^19.2.4",
"semver": "^7.7.4",
"uuid": "^13.0.0",
"xstate": "^5.28.0",
"yaml": "^2.8.2",
"yargs": "^18.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@statelyai/inspect": "^0.7.0",
"@types/node": "~22.20.0",
"@types/opn": "5.5.0",
"@types/react": "^19.2.14",
"@types/semver": "^7.7.1",
"@types/yargs": "^17.0.35",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"dotenv": "^17.3.1",
"oxfmt": "^0.59.0",
"oxlint": "^1.50.0",
"p-limit": "^7.3.0",
"react-devtools-core": "^7.0.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"engines": {
"bun": ">=1.3.0"
},
"packageManager": "bun@1.3.14",
"scripts": {
"clean": "bun -e \"await import('node:fs/promises').then((fs) => fs.rm('./dist', { recursive: true, force: true }))\"",
"generate": "bun run ./scripts/gen-integration-manifest.ts && bun run ./scripts/gen-skills-manifest.ts && bun run ./scripts/gen-agent-sdk-manifest.ts",
"postinstall": "bun run generate",
"prebuild": "bun run clean && bun run generate",
"build": "bun run ./scripts/build.ts",
"build:watch": "bun --watch ./dev.ts",
"lint": "oxlint",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"try": "bun run ./dev.ts",
"dev": "bun --watch ./dev.ts",
"pretest": "bun run generate",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"pretypecheck": "bun run generate",
"typecheck": "tsc --noEmit",
"eval": "bun run ./tests/evals/index.ts",
"eval:history": "bun run ./tests/evals/index.ts history",
"eval:diff": "bun run ./tests/evals/index.ts diff",
"eval:prune": "bun run ./tests/evals/index.ts prune",
"eval:logs": "bun run ./tests/evals/index.ts logs",
"eval:show": "bun run ./tests/evals/index.ts show"
},
"author": "WorkOS",
"license": "MIT"
}