generated from maxgfr/typescript-swc-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
122 lines (122 loc) · 3.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
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": "notdiamond",
"type": "module",
"version": "1.0.10",
"author": "not-diamond",
"license": "MIT",
"description": "TS/JS client for the NotDiamond API",
"main": "./dist/index.cjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Not-Diamond/notdiamond-node.git"
},
"bugs": {
"url": "https://github.com/Not-Diamond/notdiamond-node/issues"
},
"homepage": "https://github.com/Not-Diamond/notdiamond-node#readme",
"files": [
"dist"
],
"keywords": [
"ai",
"not-diamond",
"typescript",
"openai",
"chatgpt",
"anthropic",
"claude",
"gemini",
"model router"
],
"scripts": {
"prepare": "husky install",
"start:cjs": "node ./dist/index.cjs",
"start:esm": "node ./dist/index.mjs",
"dev": "nodemon",
"develop": "node --no-warnings=ExperimentalWarning --loader ts-node/esm ./src/index.ts",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch --passWithNoTests",
"test:coverage": "jest --coverage --passWithNoTests",
"clean": "rimraf build && rimraf dist",
"build": "swc ./src -d build",
"build:watch": "swc ./src -d build -w",
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint ./src --ext .ts --fix",
"prettier": "prettier '**/*.{ts,json,md}'",
"prettier:write": "prettier --write '**/*.{ts,json,md}'",
"type-check": "tsc --noEmit",
"lint-staged": "lint-staged",
"release": "semantic-release",
"bundle": "unbuild"
},
"dependencies": {
"@langchain/anthropic": "^0.3.1",
"@langchain/cohere": "^0.3.0",
"@langchain/community": "^0.3.3",
"@langchain/core": "^0.3.3",
"@langchain/google-genai": "^0.1.0",
"@langchain/mistralai": "^0.1.1",
"@langchain/openai": "^0.3.0",
"ansi-styles": "^6.2.1",
"axios": "^1.7.7",
"camelcase": "^8.0.0",
"decamelize": "^6.0.0",
"dotenv": "^16.4.5",
"eventemitter3": "^5.0.1",
"langchain": "^0.3.2",
"langsmith": "^0.1.60",
"p-finally": "^2.0.1",
"p-queue": "^8.0.1",
"p-retry": "^6.2.0",
"p-timeout": "^6.1.2",
"retry": "^0.13.1",
"semver": "^7.6.3",
"uuid": "^10.0.0",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.23.3"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.0",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^13.0.0",
"@swc/cli": "0.3.12",
"@swc/core": "1.5.7",
"@swc/jest": "0.2.36",
"@types/jest": "29.5.12",
"@types/node": "20.12.12",
"@typescript-eslint/eslint-plugin": "7.9.0",
"@typescript-eslint/parser": "7.9.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-prettier": "5.1.3",
"husky": "^9.0.0",
"jest": "29.7.0",
"lint-staged": "^15.0.0",
"nodemon": "3.1.0",
"prettier": "3.2.5",
"regenerator-runtime": "^0.14.0",
"rimraf": "5.0.7",
"semantic-release": "^23.0.0",
"ts-node": "^10.9.1",
"typescript": "5.4.5",
"unbuild": "^2.0.0"
},
"resolutions": {
"wrap-ansi": "7.0.0"
},
"engines": {
"node": ">=20",
"npm": ">=8"
}
}