-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·65 lines (65 loc) · 1.62 KB
/
package.json
File metadata and controls
executable file
·65 lines (65 loc) · 1.62 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
{
"name": "agui-chain",
"version": "0.2.1",
"type": "module",
"description": "A lightweight chain-based API for generating AG-UI protocol events",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"author": "tageecc <tageecc@gmail.com>",
"license": "MIT",
"keywords": [
"ag-ui",
"protocol",
"chain",
"events",
"streaming",
"typescript"
],
"dependencies": {
"@ag-ui/core": "^0.0.35"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "vitest run",
"test:watch": "vitest --watch",
"test:coverage": "vitest run --coverage",
"type-check": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"prepublishOnly": "pnpm build && pnpm test && pnpm lint"
},
"repository": {
"type": "git",
"url": "https://github.com/alibaba/agui-chain.git"
},
"bugs": {
"url": "https://github.com/alibaba/agui-chain/issues"
},
"homepage": "https://github.com/alibaba/agui-chain#readme",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"devDependencies": {
"@types/node": "^24.1.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^8.0.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.0.0",
"typescript": "^5.0.0",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=16.0.0"
}
}