-
Notifications
You must be signed in to change notification settings - Fork 413
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.16 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.16 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
{
"name": "@opentui",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "cd packages/core && bun run build && cd ../3d && bun run build && cd ../solid && bun run build && cd ../react && bun run build",
"build:go": "cd packages/go && go build ./...",
"pre-publish": "bun scripts/pre-publish.ts",
"publish": "bun run pre-publish && bun run publish:core && bun run publish:3d && bun run publish:react && bun run publish:solid",
"publish:3d": "cd packages/3d && bun run publish",
"publish:core": "cd packages/core && bun run publish",
"publish:react": "cd packages/react && bun run publish",
"publish:solid": "cd packages/solid && bun run publish",
"publish:vue": "cd packages/vue && bun run publish",
"prepare-release": "bun scripts/prepare-release.ts",
"test:go": "cd packages/go && go test -v . && go build ./examples/...",
"prettier:write": "prettier --write .",
"test": "bun run --filter '@opentui/core' --filter '@opentui/solid' --filter '@opentui/react' --if-present test"
},
"devDependencies": {
"prettier": "3.6.2"
},
"prettier": {
"semi": false,
"printWidth": 120
}
}