-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.45 KB
/
Copy pathpackage.json
File metadata and controls
124 lines (124 loc) · 3.45 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@flo-ai/codex-ts-sdk",
"version": "0.0.7",
"description": "TypeScript client for Codex native runtime",
"keywords": [
"flo-ai",
"codex-ts-sdk",
"codex",
"openai",
"openai-codex",
"codex-sdk",
"codex-client",
"typescript",
"sdk",
"api",
"client",
"ai",
"llm",
"language-model",
"native",
"runtime",
"conversational-ai",
"streaming",
"async",
"napi",
"rust-bindings",
"code-generation",
"developer-tools"
],
"author": "Flo AI",
"repository": {
"type": "git",
"url": "git+https://github.com/flo-ai/codex-ts-sdk.git"
},
"bugs": {
"url": "https://github.com/flo-ai/codex-ts-sdk/issues"
},
"homepage": "https://github.com/flo-ai/codex-ts-sdk#readme",
"license": "MIT",
"type": "module",
"main": "./dist/cjs/src/index.js",
"module": "./dist/esm/src/index.js",
"types": "./dist/types/src/index.d.ts",
"exports": {
".": {
"types": "./dist/types/src/index.d.ts",
"import": "./dist/esm/src/index.js",
"require": "./dist/cjs/src/index.js"
},
"./bindings": {
"types": "./dist/types/src/bindings/index.d.ts",
"import": "./dist/esm/src/bindings/index.js",
"require": "./dist/cjs/src/bindings/index.js"
},
"./cloud": {
"types": "./dist/types/src/cloud/index.d.ts",
"import": "./dist/esm/src/cloud/index.js",
"require": "./dist/cjs/src/cloud/index.js"
}
},
"files": [
"dist/",
"native/codex-napi/index.node",
"native/codex-napi/index.js",
"native/README.md",
"docs/",
"examples/",
"CHANGELOG.md",
"SECURITY.md",
"README.md",
"LICENSE"
],
"scripts": {
"setup": "node scripts/setup.cjs",
"clean": "rm -rf dist",
"build": "npm run clean && npm run build:esm && npm run build:cjs && npm run build:types && node scripts/write-cjs-package-json.cjs",
"build:esm": "tsc -p tsconfig.build.json",
"build:cjs": "tsc -p tsconfig.build.cjs.json",
"build:types": "tsc -p tsconfig.types.json",
"prepublishOnly": "npm run package",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "eslint src --ext .ts",
"test": "vitest run",
"test:watch": "vitest watch",
"test:live:status": "node --enable-source-maps scripts/run-live-status.mjs",
"test:monitoring": "vitest run --reporter=verbose tests/monitoring/",
"test:persistence": "vitest run --reporter=verbose tests/persistence/",
"test:cloud:list": "vitest run --reporter=verbose tests/live/cloud-list-tasks.test.ts",
"test:cloud:create": "vitest run --reporter=verbose tests/live/cloud-create-minimal.test.ts",
"coverage": "vitest run --coverage",
"build:native": "napi build --platform --manifest-path native/codex-napi/Cargo.toml",
"package": "npm run build && npm run build:native",
"docs": "typedoc"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@napi-rs/cli": "^3.2.0",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"msw": "^2.4.2",
"eslint": "^9.35.0",
"typedoc": "^0.25.13",
"typescript": "^5.3.0",
"vitest": "^3.2.4"
},
"typesVersions": {
"*": {
"bindings": [
"dist/types/src/bindings/index.d.ts"
],
"bindings/*": [
"dist/types/src/bindings/*"
],
"*": [
"dist/types/src/*"
]
}
}
}