-
-
Notifications
You must be signed in to change notification settings - Fork 215
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 881 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 881 Bytes
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
{
"name": "pmxt-monorepo",
"private": true,
"engines": {
"node": ">=18.0.0"
},
"workspaces": [
"core",
"sdks/*"
],
"scripts": {
"dev": "concurrently \"npm --workspace=pmxt-core run build -- --watch\" \"npm run server --workspace=pmxt-core\"",
"server": "npm run server --workspace=pmxt-core",
"generate": "npm run generate:sdk:all --workspace=pmxt-core",
"test": "./scripts/verify-all.sh",
"docs:apply-hosted": "node scripts/apply-hosted-manifest.js",
"docs:llms": "node scripts/generate-llms.js"
},
"devDependencies": {
"concurrently": "^9.2.1"
},
"dependencies": {
"@types/cli-progress": "^3.11.6",
"cli-progress": "^3.12.0",
"pmxtjs": "^2.17.1",
"viem": "2.48.4"
},
"overrides": {
"viem": "2.48.4"
}
}