-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.27 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.27 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
{
"name": "synscript-workspace",
"private": true,
"type": "module",
"workspaces": {
"packages": [
"packages/*",
"reforge"
]
},
"packageManager": "pnpm@10.18.1+sha512.77a884a165cbba2d8d1c19e3b4880eee6d2fcabd0d879121e282196b80042351d5eb3ca0935fa599da1dc51265cc68816ad2bddd2a2de5ea9fdf92adbec7cd34",
"author": {
"name": "pAIrprog",
"url": "https://pairprog.io"
},
"homepage": "https://github.com/pAIrprogio/synscript",
"repository": {
"type": "git",
"url": "https://github.com/pAIrprogio/synscript.git"
},
"license": "Apache-2.0",
"scripts": {
"postinstall": "pnpm build",
"build": "pnpm -r build",
"test:types": "pnpm --parallel test:types",
"test:lint": "pnpm eslint . --cache",
"test:unit": "pnpm --parallel test:unit",
"publish-all": "lerna publish from-package --no-private",
"package:sync": "./scripts/package-sync.ts"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@types/eslint": "^9.6.1",
"eslint": "^9.36.0",
"globals": "^16.4.0",
"lerna": "^9.0.0",
"prettier": "^3.6.2",
"tsup": "^8.5.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.1"
},
"dependencies": {
"glob": "^11.0.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"kuzu"
]
}
}