-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.15 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.15 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
{
"name": "@superinstance/openconstruct-hub",
"version": "0.1.0",
"description": "OpenConstruct Integration Hub — meta-repo and TypeScript binding development for the SuperInstance ecosystem",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint src/",
"clean": "rm -rf dist/",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SuperInstance/openconstruct-hub.git"
},
"keywords": [
"openconstruct",
"superinstance",
"agent",
"ai",
"onboarding",
"multi-agent",
"fleet"
],
"author": "SuperInstance",
"license": "MIT",
"bugs": {
"url": "https://github.com/SuperInstance/openconstruct-hub/issues"
},
"homepage": "https://github.com/SuperInstance/openconstruct-hub#readme",
"devDependencies": {
"typescript": "^5.4.0",
"@types/node": "^20.0.0",
"jest": "^29.7.0",
"@types/jest": "^29.5.0",
"ts-jest": "^29.1.0",
"eslint": "^8.56.0"
},
"dependencies": {
"@superinstance/openconstruct": "^0.1.0"
},
"peerDependencies": {
"typescript": ">=5.0.0"
}
}