-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 2.13 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
{
"private": true,
"name": "langbase",
"license": "Apache-2.0",
"scripts": {
"dev": "turbo dev",
"dev:pkgs": "turbo run dev --filter=./packages/*",
"prepare": "husky",
"lint": "turbo lint",
"test": "turbo test",
"build:pkgs": "turbo run build --filter=./packages/*",
"changeset": "changeset",
"publint": "turbo publint",
"type-check": "turbo type-check",
"version-packages": "changeset version && pnpm clean-examples && pnpm install --no-frozen-lockfile",
"clean": "turbo clean",
"clean-all": "turbo clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"release": "turbo clean && pnpm install && turbo build && changeset publish",
"releaseDocs": "turbo build --filter=docs^... && changeset publish",
"releasex": "turbo build && changeset publish",
"prettier-check": "prettier --check \"**/*.{js,ts,tsx,md,mdx}\"",
"prettier-fix": "prettier --write \"**/*.{js,ts,tsx,md,mdx}\"",
"devv": "turbo dev --no-cache --concurrency 16 --continue",
"ci:release": "turbo clean && turbo build && changeset publish",
"clean-examples": "node .github/scripts/cleanup-examples-changesets.mjs",
"ci:version": "changeset version && node .github/scripts/cleanup-examples-changesets.mjs && pnpm install --no-frozen-lockfile",
"snapshot": "node .github/scripts/release-snapshot.js",
"update-examples": "npx tsx .github/scripts/update-examples.ts"
},
"devDependencies": {
"@langbase/eslint-config": "workspace:*",
"@changesets/cli": "^2.27.5",
"@types/node": "^20.11.24",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"publint": "^0.2.8",
"turbo": "^2.0.4",
"vitest": "^1.6.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"lint-staged": {
"*": [
"prettier --ignore-unknown --write"
]
},
"homepage": "https://langbase.com/docs",
"repository": {
"type": "git",
"url": "git+https://github.com/LangbaseInc/langbase-sdk.git"
},
"bugs": {
"url": "https://github.com/LangbaseInc/langbase-sdk/issues"
},
"keywords": [
"ai",
"llm",
"baseai",
"base ai",
"langbase",
"langbase.com",
"generative AI"
]
}