-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
149 lines (149 loc) · 4.63 KB
/
Copy pathpackage.json
File metadata and controls
149 lines (149 loc) · 4.63 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"name": "@nestm/agentportal",
"version": "0.1.0-alpha.0",
"description": "NestJS 12 integration for AgentPortal with typed portals, managed CapsuleOS execution, and native streaming HTTP responses.",
"license": "BSD-3-Clause",
"author": "nestm",
"repository": {
"type": "git",
"url": "git+https://github.com/nestm-dev/agentportal.git"
},
"homepage": "https://github.com/nestm-dev/agentportal#readme",
"bugs": {
"url": "https://github.com/nestm-dev/agentportal/issues"
},
"keywords": [
"nestjs",
"nestjs-12",
"agentportal",
"agents",
"capsuleos",
"streaming",
"esm",
"nestm"
],
"type": "module",
"sideEffects": false,
"engines": {
"node": ">=24.0.0"
},
"packageManager": "pnpm@11.20.0",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
},
"./testing": {
"types": "./dist/testing/index.d.mts",
"import": "./dist/testing/index.mjs",
"default": "./dist/testing/index.mjs"
},
"./capsuleos": {
"types": "./dist/capsuleos/index.d.mts",
"import": "./dist/capsuleos/index.mjs",
"default": "./dist/capsuleos/index.mjs"
},
"./http": {
"types": "./dist/http/index.d.mts",
"import": "./dist/http/index.mjs",
"default": "./dist/http/index.mjs"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md",
"CONTRIBUTING.md",
"SECURITY.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"build:watch": "tsdown --watch src",
"build:tsc": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"lint": "oxlint --type-aware",
"lint:fix": "oxlint --type-aware --fix",
"format": "prettier --write . --ignore-unknown",
"format:check": "prettier --check . --ignore-unknown",
"check": "pnpm run lint && pnpm run format:check && pnpm run typecheck",
"test": "pnpm run test:unit && pnpm run test:express && pnpm run test:fastify && pnpm run test:types",
"test:unit": "vitest run --config vitest.config.ts",
"test:express": "cross-env TEST_HTTP_ADAPTER=express vitest run --config vitest.config.e2e.ts",
"test:fastify": "cross-env TEST_HTTP_ADAPTER=fastify vitest run --config vitest.config.e2e.ts",
"test:types": "tsc -p tests/types/tsconfig.json",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:packed-types": "tsc -p tests/packed-types/tsconfig.json",
"test:packed": "node scripts/packed-consumer-smoke.mjs",
"test:cross-repository": "node scripts/cross-repository-packed-smoke.mjs",
"verify:pack": "pnpm run build && node scripts/check-package.mjs && publint --strict && pnpm run test:packed-types && pnpm run test:packed",
"verify": "pnpm run check && pnpm run test && pnpm run verify:pack && pnpm exec attw --pack . --profile esm-only",
"prepack": "pnpm run build",
"changeset": "changeset",
"release": "node scripts/publish.mjs"
},
"peerDependencies": {
"@agentportal/portal": "^0.1.0",
"@agentportal/provider": "^0.1.0",
"@agentportal/sdk": "^0.1.0",
"@agentportal/transport": "^0.1.0",
"@capsuleos/agentportal": "^0.2.0",
"@capsuleos/core": "^0.2.0",
"@nestjs/common": "^12.0.0-alpha.5",
"@nestjs/core": "^12.0.0-alpha.5",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.0"
},
"peerDependenciesMeta": {
"@agentportal/sdk": {
"optional": true
},
"@agentportal/transport": {
"optional": true
},
"@capsuleos/agentportal": {
"optional": true
},
"@capsuleos/core": {
"optional": true
}
},
"devDependencies": {
"@agentportal/portal": "link:../../concepta/agentportal/packages/portal",
"@agentportal/provider": "link:../../concepta/agentportal/packages/provider",
"@agentportal/sdk": "link:../../concepta/agentportal/packages/core",
"@agentportal/transport": "link:../../concepta/agentportal/packages/transport",
"@arethetypeswrong/cli": "0.18.5",
"@capsuleos/agentportal": "link:../../concepta/capsuleos/packages/agentportal",
"@capsuleos/core": "link:../../concepta/capsuleos/packages/core",
"@changesets/cli": "2.31.1",
"@nestjs/common": "12.0.0-alpha.5",
"@nestjs/core": "12.0.0-alpha.5",
"@nestjs/platform-express": "12.0.0-alpha.5",
"@nestjs/platform-fastify": "12.0.0-alpha.5",
"@nestjs/testing": "12.0.0-alpha.5",
"@types/node": "26.1.2",
"@types/supertest": "7.2.1",
"@vitest/coverage-v8": "4.1.10",
"cross-env": "10.1.0",
"express": "5.2.1",
"fastify": "5.11.2",
"oxlint": "1.77.0",
"oxlint-tsgolint": "7.0.2001",
"prettier": "3.9.6",
"publint": "0.3.23",
"reflect-metadata": "0.2.2",
"rxjs": "7.8.2",
"supertest": "7.2.2",
"tsdown": "0.22.14",
"typescript": "7.0.2",
"vitest": "4.1.10"
}
}