-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.2 KB
/
package.json
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
{
"name": "jigsawstack",
"description": "JigsawStack - The AI SDK for Typescript and Javascript",
"keywords": [
"framework",
"ai",
"nextjs",
"react"
],
"type": "module",
"license": "MIT",
"version": "0.0.26",
"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": "[email protected]",
"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": "prettier --write \"./**/*.{js,jsx,mjs,cjs,ts,tsx,json}\""
},
"dependencies": {
"isomorphic-fetch": "^3.0.0"
},
"devDependencies": {
"@types/node": "^22.0.2",
"pkgroll": "^2.4.2",
"prettier": "^3.3.3",
"tsx": "^4.16.4",
"typescript": "^5.5.4"
}
}