-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.02 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.02 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
{
"name": "@agi_inc/agi-js",
"version": "0.5.1",
"description": "Official TypeScript/JavaScript SDK for AGI.tech API",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"bin",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run tests/unit",
"test:watch": "vitest",
"test:smoke": "AGI_API_KEY=f94a74fa-bcdf-429f-97b0-37b7a1df6ab2 vitest run tests/smoke-simple.test.ts --reporter=verbose",
"test:integration": "vitest run tests/integration --reporter=verbose",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\" \"examples/**/*.ts\"",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"agi",
"automation",
"browser",
"ai",
"agent",
"api",
"sdk",
"typescript",
"web-automation"
],
"author": "AGI Inc <sdk@agi.tech>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/agi-inc/agi-node.git"
},
"bugs": {
"url": "https://github.com/agi-inc/agi-node/issues"
},
"homepage": "https://docs.agi.tech",
"engines": {
"node": ">=20.4.0"
},
"dependencies": {
"eventsource-parser": "^1.1.2"
},
"optionalDependencies": {
"@agi/agi-darwin-arm64": "0.3.1",
"@agi/agi-darwin-x64": "0.3.1",
"@agi/agi-linux-x64": "0.3.1",
"@agi/agi-win32-x64": "0.3.1"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"@vitest/coverage-v8": "^1.6.1",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.1.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.0.4"
}
}