-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
93 lines (93 loc) · 3 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
{
"name": "generative-ts-development",
"version": "0.1.0-alpha.6",
"private": true,
"description": "monorepo development configuration for generative-ts",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/Econify/generative-ts.git"
},
"author": "John M Naglick",
"homepage": "https://github.com/Econify/generative-ts#readme",
"bugs": {
"url": "https://github.com/Econify/generative-ts/issues"
},
"workspaces": [
"packages/*",
"tests/"
],
"scripts": {
"build": "ts-node ./scripts/build.ts",
"build:core": "npm run build -w @generative-ts/core",
"build:main": "npm run build -w generative-ts",
"build:vertexai": "npm run build -w @generative-ts/gcloud-vertex-ai",
"clean": "rm -f *.tsbuildinfo && npm run clean --workspaces",
"check": "npm run typecheck && npm run lint && npm run test",
"docs:gen": "typedoc",
"docs:server": "echo Launching server on localhost:8000... && python3 -m http.server --directory ./docs",
"install:clean": "npm run clean && npm ci",
"lint": "npm run lint --workspaces",
"publish": "ts-node ./scripts/publish.ts",
"test": "npm run test --workspaces",
"test:e2e": "npm run test:e2e -w generative-ts-tests",
"test:integration": "npm run test:integration -w generative-ts-tests",
"test:integration:ci": "npm run test:integration:ci -w generative-ts-tests",
"test:pattern": "jest --testPathPattern \"$npm_config_pattern\"",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/aws4": "^1.11.6",
"@types/jest": "^29.5.12",
"@types/nunjucks": "^3.2.6",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"babel-jest": "^29.7.0",
"babelify": "^10.0.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"rollup": "^4.17.2",
"rollup-plugin-polyfill-node": "^0.13.0",
"rollup-plugin-visualizer": "^5.12.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typedoc": "^0.25.13",
"typedoc-theme-category-nav": "^0.0.3",
"typescript": "^5.4.5"
},
"keywords": [
"llm",
"openai",
"gpt",
"meta",
"llama",
"mistral",
"cohere",
"bedrock",
"groq",
"huggingface",
"vertexai",
"ts",
"generative",
"typescript"
]
}