-
Notifications
You must be signed in to change notification settings - Fork 474
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1006 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 1006 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
{
"name": "@opentui",
"private": true,
"workspaces": [
"packages/*",
"packages/solid/examples"
],
"scripts": {
"build": "cd packages/core && bun run build && cd ../solid && bun run build && cd ../react && bun run build",
"fmt": "oxfmt --write .",
"fmt:check": "oxfmt --check .",
"lint": "oxlint .",
"lint:ci": "oxlint . --deny-warnings",
"lint:fix": "oxlint --fix .",
"pre-publish": "bun scripts/pre-publish.ts",
"publish": "bun run pre-publish && bun run publish:core && bun run publish:react && bun run publish:solid",
"publish:core": "cd packages/core && bun run publish",
"publish:react": "cd packages/react && bun run publish",
"publish:solid": "cd packages/solid && bun run publish",
"prepare-release": "bun scripts/prepare-release.ts",
"test": "bun run --filter '@opentui/core' --filter '@opentui/solid' --filter '@opentui/react' --if-present test"
},
"devDependencies": {
"oxfmt": "0.41.0",
"oxlint": "1.56.0"
}
}