-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.08 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
{
"name": "aigc-provider-runtime-kit",
"version": "0.2.0",
"description": "Framework-neutral AIGC provider runtime with validated registries, unified adapters, standard outputs, and RunningHub/OpenAI-compatible clients.",
"type": "module",
"private": false,
"license": "MIT",
"main": "./dist/packages/runtime/src/index.js",
"types": "./dist/packages/runtime/src/index.d.ts",
"sideEffects": false,
"engines": {
"node": ">=22"
},
"files": [
"dist/packages",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Hhh2178/aigc-provider-runtime-kit.git"
},
"bugs": {
"url": "https://github.com/Hhh2178/aigc-provider-runtime-kit/issues"
},
"homepage": "https://github.com/Hhh2178/aigc-provider-runtime-kit#readme",
"keywords": [
"aigc",
"provider",
"runninghub",
"ai-agents",
"runtime",
"typescript"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"prepack": "npm run build",
"type-check": "tsc -p tsconfig.json --noEmit",
"test": "npm run build && node --test tests/*.test.mjs",
"test:package": "npm run build && node scripts/verify-package.mjs",
"verify:harness": "node scripts/verify-harness.mjs",
"harness:verify:project": "npm run verify:harness",
"harness:verify:workspace": "npm run type-check && npm test",
"harness:verify:release": "npm run verify:harness && npm run type-check && npm test && npm run test:package"
},
"devDependencies": {
"typescript": "^5.5.0"
},
"exports": {
".": {
"types": "./dist/packages/runtime/src/index.d.ts",
"import": "./dist/packages/runtime/src/index.js"
},
"./core": {
"types": "./dist/packages/core/src/index.d.ts",
"import": "./dist/packages/core/src/index.js"
},
"./runninghub": {
"types": "./dist/packages/runninghub/src/index.d.ts",
"import": "./dist/packages/runninghub/src/index.js"
},
"./runtime": {
"types": "./dist/packages/runtime/src/index.d.ts",
"import": "./dist/packages/runtime/src/index.js"
}
}
}