-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
76 lines (76 loc) · 2.43 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
{
"private": true,
"name": "baseai",
"license": "Apache-2.0",
"scripts": {
"dev": "turbo dev",
"dev:pkgs": "turbo run dev --filter=./packages/*",
"build:pkgs": "turbo run build --filter=./packages/*",
"baseai": "node packages/baseai/dist/index.js",
"baseai:dev": "nodemon --watch packages/baseai/dist -e js packages/baseai/dist/index.js dev",
"prepare": "husky",
"lint": "turbo lint",
"test": "turbo test",
"build": "turbo build",
"changeset": "changeset",
"publint": "turbo publint",
"type-check": "turbo type-check",
"version-packages": "changeset version && pnpm clean-examples && pnpm install --no-frozen-lockfile --filter=./packages/* --filter=./tools/* ",
"clean": "turbo clean",
"clean-all": "turbo clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"release": "turbo clean && pnpm i && turbo build --filter=./packages/* --filter=./tools/* && changeset publish",
"releaseSite": "turbo build --filter=baseai.dev^... && 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",
"update-examples": "npx tsx .github/scripts/update-examples.ts",
"ci:version": "changeset version && node .github/scripts/cleanup-examples-changesets.mjs && pnpm install --no-frozen-lockfile",
"snapshot": "node .github/scripts/release-snapshot.js"
},
"devDependencies": {
"@baseai/eslint-config": "workspace:*",
"@changesets/cli": "^2.27.8",
"@types/node": "^22.6.1",
"eslint": "^8.57.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.7",
"nodemon": "^3.1.7",
"prettier": "^3.3.2",
"publint": "^0.2.11",
"turbo": "^2.1.2",
"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/baseai.git"
},
"bugs": {
"url": "https://github.com/LangbaseInc/baseai/issues"
},
"keywords": [
"ai",
"llm",
"baseai",
"base ai",
"langbase",
"langbase.com",
"generative AI"
],
"dependencies": {
"dotenv": "^16.4.5"
}
}