-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.7 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
{
"name": "operator-runtime",
"version": "0.1.0",
"description": "An operator execution layer for reliable automation systems.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"engines": {
"node": ">=18"
},
"scripts": {
"start": "npx docusaurus start website --host 127.0.0.1 --port 3001",
"build": "npx docusaurus build website",
"serve": "npx docusaurus serve website/build --host 127.0.0.1 --port 3001",
"deploy": "npx docusaurus deploy website",
"docusaurus": "npx docusaurus",
"docs:build": "npx docusaurus build website",
"docs:serve": "npx docusaurus serve website/build --host 127.0.0.1 --port 3001",
"docs:deploy": "npx docusaurus deploy website",
"docs:clear": "rm -rf website/.docusaurus website/build",
"build:sdk": "tsc -p tsconfig.json",
"check": "tsc --noEmit -p tsconfig.json",
"test": "vitest run",
"example:sequence": "tsx examples/sequence-example.ts",
"example:claude-hn": "tsx examples/claude-hacker-news.ts"
},
"keywords": [
"operator",
"automation",
"typescript"
],
"license": "MIT",
"devDependencies": {
"@anthropic-ai/sdk": "^0.65.0",
"@docusaurus/core": "^3.9.2",
"@docusaurus/preset-classic": "^3.9.2",
"@docusaurus/theme-classic": "^3.9.2",
"@types/node": "^24.5.2",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"clsx": "^2.1.1",
"playwright": "^1.58.2",
"prism-react-renderer": "^2.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
}
}