-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.1 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
{
"name": "@lsby/openai-wrapper",
"version": "0.0.17",
"repository": {
"type": "git",
"url": "https://github.com/lsby/openai-wrapper"
},
"type": "module",
"exports": {
"require": "./dist/cjs/index.cjs",
"import": "./dist/esm/index.js"
},
"files": [
"dist"
],
"scripts": {
"build:all": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsup src/**/*.ts --format cjs --clean --dts -d dist/cjs",
"build:esm": "tsup src/**/*.ts --format esm --clean --dts -d dist/esm",
"check:all": "npm run check:format && npm run check:lint && npm run check:type",
"check:format": "prettier --write .",
"check:lint": "eslint . --fix",
"check:type": "tsc --noEmit",
"check:type:watch": "tsc --noEmit -w",
"prepare": "husky",
"pub:public": "npm run check:all && npm run build:all && bumpp && npm publish --access public",
"test:base": "cross-env DEBUG=@lsby:* vitest run",
"test:coverage": "cross-env DEBUG=@lsby:* vitest run --coverage && open-cli ./coverage/index.html"
},
"dependencies": {
"@lsby/ts-global": "^0.0.5",
"@lsby/ts-log": "^0.1.1",
"cross-env": "^7.0.3",
"jsonrepair": "^3.12.0",
"openai": "^4.86.1",
"zod-to-json-schema": "^3.24.6",
"zod-to-ts": "^1.2.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@lsby/eslint-config": "^0.2.17",
"@lsby/eslint-plugin": "^0.0.8",
"@types/eslint": "^9.6.1",
"@types/node": "^22.6.1",
"@vitest/coverage-v8": "^2.1.1",
"bumpp": "^9.5.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^50.2.4",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-sort-class-members": "^1.20.0",
"husky": "^9.1.6",
"open-cli": "^8.0.0",
"prettier": "3.3.3",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-packagejson": "^2.5.2",
"tsup": "^8.3.0",
"typescript": "<5.6.0",
"typescript-eslint": "8.7.0",
"vitest": "^2.1.1"
},
"peerDependencies": {
"zod": "^3.24.2"
},
"packageManager": "pnpm@9.5.0"
}