-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 1.09 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
{
"name": "localis-workspace",
"version": "0.2.0",
"private": true,
"description": "Localis — a private, local-first AI workspace for developers.",
"license": "Apache-2.0",
"author": "KebiLab",
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "npm run build -w localis-core && npm run build -w localis && npm run build -w @localis/web && npm run build -w @localis/desktop",
"build:core": "npm run build -w localis-core",
"build:cli": "npm run build -w localis",
"build:web": "npm run build -w @localis/web",
"build:desktop": "npm run build -w @localis/desktop",
"dev:web": "npm run dev -w @localis/web",
"dev:desktop": "npm run tauri:dev -w @localis/desktop",
"test": "npm run test -w localis-core && npm run test -w localis",
"typecheck": "npm run typecheck -w localis-core && npm run build -w localis-core && npm run typecheck -w localis && npm run typecheck -w @localis/web && npm run typecheck -w @localis/desktop",
"localis": "node apps/cli/dist/index.js"
},
"engines": {
"node": ">=20.9.0"
}
}