This repository was archived by the owner on Apr 10, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.65 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.65 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
{
"name": "dynamic-agent",
"version": "1.0.2",
"description": "A powerful system for analyzing and generating technology-specific agents",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"openhands_dynamic_agent_factory",
"README.md",
"LICENSE",
"package.json",
"tsconfig.json"
],
"scripts": {
"clean": "rimraf dist coverage",
"prebuild": "npm run clean",
"build": "tsc",
"postbuild": "tsc --declaration",
"test": "jest --config jest.config.js",
"lint": "eslint 'src/**/*.ts'",
"type-check": "tsc --noEmit",
"prepublishOnly": "npm run test && npm run build",
"dev": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/makafeli/openhands-dynamic-agent-factor.git"
},
"keywords": [
"technology",
"analysis",
"agent",
"framework",
"stack"
],
"author": "Your Name",
"license": "MIT",
"bugs": {
"url": "https://github.com/makafeli/openhands-dynamic-agent-factor/issues"
},
"homepage": "https://github.com/makafeli/openhands-dynamic-agent-factor#readme",
"dependencies": {
"axios": "^1.4.0",
"cheerio": "^1.0.0-rc.12"
},
"devDependencies": {
"@jest/globals": "^29.6.2",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.45.0",
"jest": "^29.6.2",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=18.0.0"
}
}