-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1004 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1004 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
32
33
34
35
36
37
38
39
{
"name": "cordxapp",
"license": "AGPL-3.0-only",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"document": "typedoc",
"bootstrap": "lerna exec bun install",
"create": "npx lerna create",
"patch": "lerna publish prerelease",
"publish": "lerna publish from-package --yes",
"prepare": "husky",
"version:all": "lerna version --force-publish",
"version": "lerna version",
"test": "lerna run test"
},
"dependencies": {
"@cordxapp/db": "workspace:*",
"@cordxapp/lintydeps": "workspace:*",
"@cordxapp/prettierlogs": "workspace:*",
"typedoc": "^0.26.11"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@types/node": "^22.9.0",
"commitlint": "^19.6.0",
"husky": "^9.1.7",
"lerna": "^8.1.9",
"prettier": "^3.3.3",
"typescript": "5.6.3"
},
"publishConfig": {
"access": "public"
},
"packageManager": "bun@1.1.34"
}