-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.21 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 3.21 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@autoblocks/client",
"version": "0.0.0-automated",
"description": "JavaScript client for Autoblocks",
"bin": {
"prompts": "./bin/prompts-cli.js",
"datasets": "./bin/datasets-cli.js"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./configs": {
"require": "./dist/configs/index.js",
"import": "./dist/configs/index.mjs"
},
"./prompts-cli": {
"require": "./dist/prompts-cli/index.js",
"import": "./dist/prompts-cli/index.mjs"
},
"./prompts": {
"require": "./dist/prompts/index.js",
"import": "./dist/prompts/index.mjs"
},
"./testing": {
"require": "./dist/testing/index.js",
"import": "./dist/testing/index.mjs"
},
"./testing/v2": {
"require": "./dist/testing/v2/index.js",
"import": "./dist/testing/v2/index.mjs"
}
},
"typesVersions": {
"*": {
"configs": [
"./dist/configs/index.d.ts"
],
"prompts-cli": [
"./dist/prompts-cli/index.d.ts"
],
"prompts": [
"./dist/prompts/index.d.ts"
],
"testing": [
"./dist/testing/index.d.ts"
],
"testing/v2": [
"./dist/testing/v2/index.d.ts"
]
}
},
"files": [
"bin",
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsup --splitting",
"type-check": "tsc --skipLibCheck --noEmit",
"format": "prettier --write .",
"lint": "eslint --max-warnings 0 .",
"test": "TZ=UTC jest",
"prepare": "husky install & npm run build"
},
"homepage": "https://github.com/autoblocksai/javascript-sdk",
"bugs": {
"url": "https://github.com/autoblocksai/javascript-sdk/issues",
"email": "support@autoblocks.ai"
},
"repository": "github:autoblocksai/javascript-sdk",
"author": {
"name": "Autoblocks Engineering",
"email": "engineering@autoblocks.ai",
"url": "https://www.autoblocks.ai"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.0",
"@godaddy/terminus": "^4.12.1",
"@tsconfig/node18": "^18.2.2",
"@types/express": "^5.0.0",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-prettier": "^5.0.0",
"express": "^5.0.0",
"husky": "^9.0.0",
"jest": "^30.0.0",
"lint-staged": "^16.0.0",
"lodash": "^4.17.21",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"tsup": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.1.6"
},
"dependencies": {
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/exporter-trace-otlp-proto": "^0.57.0",
"@opentelemetry/instrumentation": "^0.202.0",
"@opentelemetry/resources": "^1.30.0",
"@opentelemetry/sdk-node": "^0.57.0",
"@opentelemetry/sdk-trace-base": "^1.30.0",
"@opentelemetry/semantic-conventions": "^1.34.0",
"@paralleldrive/cuid2": "^2.2.2",
"openai": "^4.52.0",
"zod": "^3.21.4"
}
}