-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
85 lines (85 loc) · 2.37 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
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
{
"name": "@instructor-ai/instructor",
"version": "1.5.0",
"description": "structured outputs for llms",
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist/**"
],
"types": "./dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsup",
"lint": "eslint \"**/*.{js,json,jsx,ts,tsx}\"",
"lint:fix": "eslint --fix \"**/*.{ts,tsx}\"",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"format:write": "prettier --write \"**/*.{ts,tsx}\"",
"type-check": "tsc --noEmit",
"prepare": "husky || true",
"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/instructor-ai/instructor-js.git"
},
"keywords": [
"llm",
"structured",
"outputs",
"zod"
],
"author": "Jason Liu",
"license": "MIT",
"bugs": {
"url": "https://github.com/instructor-ai/instructor-js/issues"
},
"homepage": "https://github.com/instructor-ai/instructor-js#readme",
"dependencies": {
"zod-stream": "2.0.0",
"zod-validation-error": "^3.4.0"
},
"peerDependencies": {
"openai": ">=4.58.0",
"zod": ">=3.23.8"
},
"devDependencies": {
"@anthropic-ai/sdk": "0.29.2",
"@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/parser": "^7.5.0",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"eslint-config": "^0.3.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-turbo": "^1.10.12",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-prettier": "^5.1.2",
"husky": "^8.0.3",
"llm-polyglot": "2.2.0",
"openai": "4.68.1",
"prettier": "latest",
"ts-inference-check": "^0.3.0",
"tsup": "^8.0.1",
"typescript": "^5.2.2"
}
}