-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.43 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.43 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
{
"name": "@ai-sdk/angular",
"version": "2.0.156",
"description": "Angular implementation of ai-sdk.",
"license": "Apache-2.0",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "pnpm clean && tsup --tsconfig tsconfig.build.json",
"build:watch": "pnpm clean && tsup --tsconfig tsconfig.build.json --watch",
"clean": "del-cli dist *.tsbuildinfo",
"type-check": "tsc --build",
"test": "vitest --config vitest.config.ts --run",
"test:update": "vitest --config vitest.config.ts --run -u",
"test:watch": "vitest --config vitest.config.ts"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist/**/*",
"src",
"!src/**/*.test.ts",
"!src/**/*.test-d.ts",
"!src/**/__snapshots__",
"!src/**/__fixtures__",
"CHANGELOG.md",
"README.md"
],
"dependencies": {
"@ai-sdk/provider-utils": "workspace:*",
"ai": "workspace:*"
},
"devDependencies": {
"@ai-sdk/test-server": "workspace:*",
"@types/node": "20.17.24",
"@vercel/ai-tsconfig": "workspace:*",
"jsdom": "^24.0.0",
"tsup": "^7.2.0",
"typescript": "5.8.3",
"vitest": "^4.1.0",
"zod": "3.25.76"
},
"peerDependencies": {
"@angular/core": ">=16.0.0"
},
"engines": {
"node": ">=18"
}
}