-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1019 Bytes
/
package.json
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
{
"name": "@synthql/root",
"type": "module",
"version": "0.109.4",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"link:pkg": "yarn nx run-many -t link:pkg",
"format": "yarn prettier --write .",
"typecheck": "yarn nx run-many -t typecheck",
"test:ci": "yarn nx run-many -t test:ci",
"docs:start": "yarn --cwd ./packages/docs start",
"build": "yarn nx run-many -t build",
"ci": "yarn nx run-many -t typecheck test:ci build format",
"ci:force": "yarn nx run-many --skip-nx-cache -t typecheck test:ci build",
"compile-executable-examples": "yarn nx run-many -t compile-executable-examples",
"benchmarks": "yarn nx run-many -t benchmarks",
"publish-minor-versions": "node ./scripts/publish-minor-versions.cjs"
},
"devDependencies": {
"nx": "18.2.1",
"prettier": "^3.1.1"
},
"dependencies": {
"typedoc": "^0.25.12"
}
}