-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
36 lines (36 loc) · 1.14 KB
/
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
31
32
33
34
35
36
{
"name": "@gitbook/integrations",
"version": "0.0.0",
"private": true,
"workspaces": [
"integrations/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"check": "turbo run check",
"test": "turbo run test",
"format": "prettier --write .",
"format:check": "prettier --check .",
"publish": "turbo run publish",
"typecheck": "turbo run typecheck",
"publish-integrations": "turbo run publish-integrations",
"publish-integrations-staging": "turbo run publish-integrations-staging",
"version-packages": "changeset version",
"changeset": "changeset",
"release": "turbo run build && changeset publish",
"build-assets": "bun run ./scripts/build-assets.ts",
"publish-assets": "./scripts/publish-assets.sh"
},
"devDependencies": {
"@changesets/cli": "^2.27.8",
"assert": "^2.0.0",
"test": "^3.2.1",
"turbo": "^2.1.3",
"wrangler": "^2.1.12",
"prettier": "^3.3.3",
"@types/bun": "^1.1.10"
},
"dependencies": {},
"packageManager": "bun@1.1.29"
}