-
Notifications
You must be signed in to change notification settings - Fork 128
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.34 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.34 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@superdoc-dev/cli",
"version": "0.7.0",
"type": "module",
"bin": {
"superdoc": "./dist/index.js"
},
"files": [
"dist",
"skill"
],
"scripts": {
"predev": "node scripts/ensure-superdoc-build.js",
"dev": "bun run src/index.ts",
"prebuild": "node scripts/ensure-superdoc-build.js",
"build": "bun build src/index.ts --outdir dist --target node --format esm",
"prebuild:native": "node scripts/ensure-superdoc-build.js",
"build:native": "bun build src/index.ts --compile --outfile dist/superdoc",
"build:native:all": "node scripts/build-native-cli.js --all",
"build:native:host": "node scripts/build-native-cli.js",
"build:stage": "node scripts/stage-artifacts.js",
"build:sync-version": "node scripts/sync-version.js",
"build:prepublish": "node scripts/build-and-stage.js",
"publish:platforms": "node scripts/publish.js --tag latest",
"publish:platforms:dry": "node scripts/publish.js --tag latest --dry-run",
"pretest": "node scripts/ensure-superdoc-build.js",
"test": "NODE_ENV=test bun test",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"pretypecheck": "node scripts/ensure-superdoc-build.js --types",
"typecheck": "tsc --noEmit -p tsconfig.check.json",
"prepublishOnly": "pnpm run build",
"release": "pnpx semantic-release",
"release:dry-run": "pnpx semantic-release --dry-run"
},
"dependencies": {
"@hocuspocus/provider": "catalog:",
"@liveblocks/client": "catalog:",
"@liveblocks/yjs": "catalog:",
"fast-glob": "catalog:",
"happy-dom": "catalog:",
"ws": "catalog:",
"y-websocket": "catalog:",
"yjs": "catalog:"
},
"devDependencies": {
"@superdoc/document-api": "workspace:*",
"@superdoc/pm-adapter": "workspace:*",
"@superdoc/super-editor": "workspace:*",
"@types/bun": "catalog:",
"@types/node": "catalog:",
"@types/ws": "^8.5.13",
"superdoc": "workspace:*",
"typescript": "catalog:"
},
"module": "src/index.ts",
"publishConfig": {
"access": "public"
},
"optionalDependencies": {
"@superdoc-dev/cli-darwin-arm64": "workspace:*",
"@superdoc-dev/cli-darwin-x64": "workspace:*",
"@superdoc-dev/cli-linux-x64": "workspace:*",
"@superdoc-dev/cli-linux-arm64": "workspace:*",
"@superdoc-dev/cli-windows-x64": "workspace:*"
}
}