forked from 567-labs/instructor-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.79 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.79 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
{
"name": "instructor-js",
"version": "0.0.1",
"description": "structured outputs for llms",
"main": "./dist/instructor.js",
"module": "./dist/instructor.mjs",
"types": "./dist/instructor.d.ts",
"exports": {
".": {
"import": "./dist/instructor.mjs",
"require": "./dist/instructor.js"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsup",
"lint": "eslint src/",
"type-check": "tsc --noEmit",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
"changeset": "changeset",
"version-packages": "changeset version",
"publish-packages": "tsup && changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jxnl/instructor-js.git"
},
"keywords": [
"llm",
"structured",
"outputs",
"zod"
],
"author": "Jason Liu",
"license": "MIT",
"bugs": {
"url": "https://github.com/jxnl/instructor-js/issues"
},
"homepage": "https://github.com/jxnl/instructor-js#readme",
"dependencies": {
"zod-to-json-schema": "^3.22.3"
},
"peerDependencies": {
"openai": ">=4.24.1",
"zod": ">=3.22.4"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@ianvs/prettier-plugin-sort-imports": "4.1.0",
"@types/bun": "^1.0.0",
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "^8.40.0",
"eslint-config-prettier": "9.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"prettier": "3.0.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
}
}