forked from chistiq/workspai
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 2.53 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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "workspai",
"private": true,
"version": "0.52.0",
"description": "Workspai monorepo for Workspace Intelligence packages.",
"author": "Chistiq",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/chistiq/workspai.git"
},
"homepage": "https://www.workspai.com/",
"bugs": {
"url": "https://github.com/chistiq/workspai/issues"
},
"packageManager": "npm@10.8.2",
"workspaces": [
"packages/*"
],
"overrides": {
"brace-expansion": "5.0.8",
"esbuild": "^0.28.1",
"postcss": "8.5.22"
},
"scripts": {
"workspaces:list": "corepack npm query .workspace",
"check:brand": "node scripts/check-brand-contract.mjs",
"check": "corepack npm --workspaces --if-present run check",
"fix": "corepack npm --workspaces --if-present run fix",
"validate": "corepack npm --workspaces --if-present run validate",
"ci": "corepack npm --workspaces --if-present run ci",
"build": "corepack npm --workspace workspai run build",
"dev": "corepack npm --workspace workspai run dev",
"test": "corepack npm --workspace workspai run test",
"lint": "corepack npm --workspace workspai run lint",
"typecheck": "corepack npm --workspace workspai run typecheck",
"format": "corepack npm --workspace workspai run format",
"format:check": "corepack npm --workspace workspai run format:check",
"smoke": "corepack npm --workspaces --if-present run smoke",
"security": "corepack npm --workspace workspai run security",
"security:fix": "corepack npm --workspace workspai run security:fix",
"cli": "node packages/cli/dist/index.js",
"install:local": "corepack npm install --ignore-scripts && corepack npm run build && corepack npm --workspace workspai link && corepack npm --workspace wspai link",
"uninstall:local": "corepack npm unlink -g workspai || true && corepack npm unlink -g wspai || true",
"reinstall:local": "corepack npm run uninstall:local && corepack npm run install:local",
"release:dry": "corepack npm --workspace workspai run release:dry",
"release:patch": "corepack npm --workspace workspai run release:patch",
"release:minor": "corepack npm --workspace workspai run release:minor",
"release:major": "corepack npm --workspace workspai run release:major",
"prepare": "husky",
"prepush:check": "corepack npm run check:brand && corepack npm run check && corepack npm run ci && corepack npm --workspace workspai run contracts:validate"
},
"devDependencies": {
"chokidar": "^3.6.0",
"husky": "^9.1.7"
}
}