-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
75 lines (75 loc) · 1.84 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
{
"name": "gateway",
"version": "0.0.39",
"license": "MIT",
"sideEffects": false,
"private": false,
"description": "Adaline Gateway",
"keywords": [
"AI",
"Adaline",
"LLM",
"Prompt Engineering",
"Prompt",
"GenAI"
],
"author": "Adaline <[email protected]>",
"homepage": "https://www.adaline.ai",
"repository": {
"type": "git",
"url": "git+https://github.com/adaline/gateway.git"
},
"bugs": {
"url": "https://github.com/adaline/gateway/issues"
},
"engines": {
"node": ">=18",
"pnpm": ">=9",
"yarn": "please-use-pnpm",
"npm": "please-use-pnpm"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public"
},
"workspaces": [
"core/*",
"core/providers/*",
"docs",
"examples/*",
"packages/*",
"tools/*"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky",
"clean": "turbo clean && rimraf node_modules .turbo",
"build": "turbo build",
"test": "turbo run test",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "turbo format",
"post": "turbo post",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish",
"auto-changelog": "auto-changelog --package --unreleased --commit-limit false --hide-credit --template .changeset/changelog-template.hbs --output cxrx.md"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@types/jest": "^29.5.13",
"auto-changelog": "^2.5.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"tsup": "^8.2.2",
"turbo": "^2.1.3",
"typescript": "^5.6.2",
"vitest": "^2.1.2"
}
}