-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 2.17 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
{
"name": "@skeet-framework/ai",
"version": "1.7.13",
"description": "Skeet Framework Plugin - AI",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/elsoul/skeet-ai.git"
},
"keywords": [
"TypeScript",
"Serverless",
"AI",
"OpenAI",
"VertexAI",
"Skeet Plugin",
"framework"
],
"author": "ELSOUL LABO B.V.",
"license": "Apache-2.0",
"private": false,
"bugs": {
"url": "https://github.com/elsoul/skeet-ai/issues"
},
"homepage": "https://elsoul.github.io/skeet-ai",
"scripts": {
"test": "jest --coverage=false --detectOpenHandles --maxWorkers=1",
"build": "yarn build-doc && npx ts-node build.ts && npx ts-node add-line.ts && tsc --emitDeclarationOnly",
"update:packages": "ncu -u --reject node-fetch && yarn",
"version:update": "ts-node -r tsconfig-paths/register --transpile-only release.ts",
"build-doc": "typedoc src/index.ts --out docs",
"publish": "npm publish",
"dev": "npx ts-node -r tsconfig-paths/register --transpile-only src/index.ts",
"discord:labo": "npx ts-node -r tsconfig-paths/register --transpile-only ./.github/workflows/runDiscordChangeLog.ts labo",
"discord:epics": "npx ts-node -r tsconfig-paths/register --transpile-only ./.github/workflows/runDiscordChangeLog.ts epics"
},
"dependencies": {
"@google-cloud/aiplatform": "3.11.0",
"@google-cloud/translate": "8.0.3",
"crypto-js": "4.2.0",
"dotenv": "16.4.1",
"node-fetch": "2.6.9",
"openai": "4.26.1",
"pako": "2.1.0"
},
"devDependencies": {
"@skeet-framework/discord-utils": "0.2.14",
"@skeet-framework/utils": "1.2.4",
"@types/crypto-js": "4.2.2",
"@types/jest": "29.5.12",
"@types/node": "20.11.16",
"@types/node-fetch": "2.6.11",
"@types/pako": "2.0.3",
"babel-loader": "9.1.3",
"esbuild": "0.20.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"jest": "29.7.0",
"npm-check-updates": "16.14.14",
"prettier": "3.2.5",
"ts-jest": "29.1.2",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typedoc": "0.25.7",
"typescript": "5.3.3"
}
}