-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.42 KB
/
Copy pathpackage.json
File metadata and controls
127 lines (127 loc) · 3.42 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
{
"name": "@nestm/capsuleos",
"version": "0.1.0-alpha.0",
"description": "Typed CapsuleOS integration for NestJS 12 with testing and AI SDK Harness subpaths.",
"license": "BSD-3-Clause",
"author": "nestm",
"repository": {
"type": "git",
"url": "git+https://github.com/nestm-dev/capsuleos.git"
},
"homepage": "https://github.com/nestm-dev/capsuleos#readme",
"bugs": {
"url": "https://github.com/nestm-dev/capsuleos/issues"
},
"keywords": [
"nestjs",
"nestjs-12",
"capsuleos",
"sandbox",
"agents",
"ai-sdk",
"harness",
"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"
},
"./ai-sdk-harness": {
"types": "./dist/ai-sdk-harness/index.d.mts",
"import": "./dist/ai-sdk-harness/index.mjs",
"default": "./dist/ai-sdk-harness/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:types",
"test:unit": "vitest run --config vitest.config.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",
"verify:pack": "pnpm run build && publint --strict && pnpm run test:packed-types && node scripts/check-package.mjs",
"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": {
"@ai-sdk/harness": "1.0.58",
"@capsuleos/ai-sdk-harness": "^0.2.0",
"@capsuleos/testing": "^0.1.0",
"@nestjs/common": "^12.0.0-alpha.5",
"@nestjs/core": "^12.0.0-alpha.5",
"capsuleos": "^0.2.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.0"
},
"peerDependenciesMeta": {
"@ai-sdk/harness": {
"optional": true
},
"@capsuleos/ai-sdk-harness": {
"optional": true
},
"@capsuleos/testing": {
"optional": true
}
},
"devDependencies": {
"@ai-sdk/harness": "1.0.58",
"@arethetypeswrong/cli": "0.18.5",
"@capsuleos/ai-sdk-harness": "0.2.0",
"@capsuleos/testing": "0.1.1",
"@changesets/cli": "2.31.1",
"@nestjs/common": "12.0.0-alpha.5",
"@nestjs/core": "12.0.0-alpha.5",
"@nestjs/testing": "12.0.0-alpha.5",
"@types/node": "26.1.2",
"@vitest/coverage-v8": "4.1.10",
"capsuleos": "0.2.0",
"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",
"tsdown": "0.22.14",
"typescript": "7.0.2",
"vitest": "4.1.10"
}
}