-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.37 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
{
"name": "qca-sdk",
"version": "0.0.1-dev.2",
"description": "TypeScript SDK for Qoder Cloud Agents Forward and Managed APIs",
"author": "Qoder",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/QoderAI/qoder-cloud-agents-sdk-ts.git"
},
"bugs": {
"url": "https://github.com/QoderAI/qoder-cloud-agents-sdk-ts/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./dist/esm/index.js",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./forward": {
"import": {
"types": "./dist/esm/forward/index.d.ts",
"default": "./dist/esm/forward/index.js"
},
"require": {
"types": "./dist/forward/index.d.ts",
"default": "./dist/forward/index.js"
}
},
"./managed": {
"import": {
"types": "./dist/esm/managed/index.d.ts",
"default": "./dist/esm/managed/index.js"
},
"require": {
"types": "./dist/managed/index.d.ts",
"default": "./dist/managed/index.js"
}
}
},
"typesVersions": {
"*": {
"forward": [
"dist/forward/index.d.ts"
],
"managed": [
"dist/managed/index.d.ts"
]
}
},
"sideEffects": false,
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "node scripts/build.mjs",
"typecheck": "tsc --noEmit && tsc -p tsconfig.types.json",
"test": "npm run build && npm run test:types && node --test tests/*.test.mjs tests/scenarios/*.test.mjs",
"test:unit": "npm test",
"test:contract": "npm run build && node --test tests/api-contracts.test.mjs",
"test:scenarios": "npm run build && node --test tests/scenarios/*.test.mjs",
"test:live": "npm run build && node scripts/run-live.mjs all",
"prepack": "npm run build",
"test:types": "tsc -p tsconfig.types.json",
"test:e2e": "npm test && node scripts/run-live.mjs e2e",
"example": "npm run build && node examples/run.mjs"
},
"devDependencies": {
"typescript": "^5.8.3"
},
"type": "commonjs",
"engines": {
"node": ">=20.12.0"
}
}