-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.23 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.23 KB
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
{
"name": "@openlinkos/monorepo",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "OpenLinkOS — An open-source Agent framework for building, orchestrating, and deploying AI agents",
"homepage": "https://openlinkos.com",
"repository": {
"type": "git",
"url": "https://github.com/openlinkos/agent.git"
},
"license": "MIT",
"author": "OpenLinkOS",
"scripts": {
"build": "pnpm -r run build",
"dev": "pnpm -r run dev",
"lint": "eslint . --ext .ts,.tsx",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "pnpm -r run typecheck",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"clean": "pnpm -r run clean && rimraf node_modules",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@types/node": "^20.11.0",
"eslint": "^8.56.0",
"prettier": "^3.2.0",
"rimraf": "^5.0.5",
"tsup": "^8.0.0",
"typescript": "^5.3.0",
"vitepress": "^1.5.0",
"vitest": "^1.2.0"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18.0.0"
}
}