forked from toolkit-ai/toolkit-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.6 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
{
"name": "@heypal/toolkit-ai",
"version": "0.1.2",
"description": "Toolkit is an easy way to generate and use AI plugins. Generate code for LangChain plugins by just describing what they should do.",
"repository": "https://github.com/hey-pal/toolkit-ai",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"build": "rollup -c",
"prepublishOnly": "pnpm build",
"push-tags": "git push --tags origin main",
"publish-major": "npm version major && pnpm push-tags && npm publish",
"publish-minor": "npm version minor && pnpm push-tags && npm publish",
"publish-patch": "npm version patch && pnpm push-tags && npm publish"
},
"contributors": [
"Nicolae Rusan <[email protected]>",
"Jascha Ephraim <[email protected]>"
],
"license": "MIT",
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.0",
"@tsconfig/node18-strictest-esm": "^1.0.1",
"@types/node": "^18.15.11",
"@types/prettier": "^2.7.2",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.37.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.3",
"rollup": "^3.20.2",
"typescript": "^5.0.3"
},
"dependencies": {
"@sindresorhus/slugify": "^2.2.0",
"camelcase": "^7.0.1",
"handlebars": "^4.7.7",
"langchain": "^0.0.49",
"prettier": "^2.8.7",
"zod": "^3.21.4"
}
}