-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.7 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.7 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
{
"name": "jigsawstack",
"description": "JigsawStack - The AI SDK for Typescript and Javascript",
"keywords": ["framework", "ai", "nextjs", "react"],
"type": "module",
"license": "MIT",
"version": "0.4.2",
"homepage": "https://jigsawstack.com",
"repository": {
"type": "git",
"url": "git+https://github.com/JigsawStack/jigsawstack-js.git"
},
"bugs": {
"url": "https://github.com/JigsawStack/jigsawstack-js/issues"
},
"packageManager": "yarn@1.22.22",
"engines": {
"node": ">=18"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"files": ["dist/**"],
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"scripts": {
"build": "pkgroll --src=./",
"format": "biome check --write .",
"test": "yarn build && yarn test:all",
"test:run": "node --test --no-warnings --import tsx --test-reporter=spec",
"test:all": "yarn test:run tests/*.ts",
"test:audio": "yarn test:run tests/audio.test.ts",
"test:classification": "yarn test:run tests/classification.test.ts",
"test:validate": "yarn test:run tests/validate.test.ts",
"test:vision": "yarn test:run tests/vision.test.ts",
"test:web:scraper": "yarn test:run tests/web-scraper.test.ts",
"test:web:search": "yarn test:run tests/web-search.test.ts"
},
"dependencies": {
"isomorphic-fetch": "^3.0.0",
"zod": "^3.25.67"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.0.2",
"pkgroll": "^2.11.2",
"tsx": "^4.16.4",
"typescript": "^5.5.4"
}
}