-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.32 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
{
"name": "simstudio-ts-sdk",
"version": "0.1.2",
"description": "Sim SDK - Execute workflows programmatically",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",
"type-check": "tsc --noEmit",
"lint": "biome check --write --unsafe .",
"lint:check": "biome check .",
"format": "biome format --write .",
"format:check": "biome format .",
"dev:watch": "tsc --watch",
"prepublishOnly": "bun run build",
"test": "vitest run",
"test:watch": "vitest"
},
"files": [
"dist"
],
"keywords": [
"simstudio",
"ai",
"workflow",
"sdk",
"api",
"automation",
"typescript"
],
"author": "Sim",
"license": "Apache-2.0",
"dependencies": {
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@sim/tsconfig": "workspace:*",
"@types/node": "^20.5.1",
"@vitest/coverage-v8": "^4.1.0",
"typescript": "^5.7.3",
"vitest": "^4.1.0"
},
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/simstudioai/sim.git",
"directory": "packages/ts-sdk"
},
"homepage": "https://sim.ai",
"bugs": {
"url": "https://github.com/simstudioai/sim/issues"
}
}