sdoc-editor-cli 0.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +625 -0
- package/bin/sdoc.js +2 -0
- package/dist/examples/operations/delete-block.json +17 -0
- package/dist/examples/operations/delete-section.json +12 -0
- package/dist/examples/operations/insert-block.json +19 -0
- package/dist/examples/operations/insert-section.json +21 -0
- package/dist/examples/operations/move-block.json +21 -0
- package/dist/examples/operations/move-section.json +16 -0
- package/dist/examples/operations/rename-block-id.json +13 -0
- package/dist/examples/operations/rename-heading.json +13 -0
- package/dist/examples/operations/replace-block.json +21 -0
- package/dist/examples/operations/set-document-title.json +17 -0
- package/dist/examples/operations/set-heading-level.json +13 -0
- package/dist/examples/operations/update-block-attrs.json +13 -0
- package/dist/examples/operations/update-document-metadata.json +15 -0
- package/dist/examples/operations/update-document-settings.json +16 -0
- package/dist/schemas/sdoc.cli.response.schema.json +436 -0
- package/dist/schemas/sdoc.operations.schema.json +390 -0
- package/dist/schemas/sdoc.read.schema.json +142 -0
- package/dist/schemas/sdoc.schema.json +559 -0
- package/dist/sdoc.js +8637 -0
- package/package.json +30 -0
package/package.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "sdoc-editor-cli",
|
|
3
|
+
"version": "0.9.2",
|
|
4
|
+
"description": "Preview-first command line operations for Structured Doc Editor documents",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"sdoc": "bin/sdoc.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"bin/sdoc.js",
|
|
11
|
+
"dist/sdoc.js",
|
|
12
|
+
"dist/schemas/*.json",
|
|
13
|
+
"dist/examples/operations/*.json",
|
|
14
|
+
"README.md",
|
|
15
|
+
"LICENSE"
|
|
16
|
+
],
|
|
17
|
+
"engines": {
|
|
18
|
+
"node": ">=22.22.2"
|
|
19
|
+
},
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "node build.mjs",
|
|
22
|
+
"typecheck": "tsc --noEmit -p tsconfig.json",
|
|
23
|
+
"test": "vitest run --config vitest.config.ts"
|
|
24
|
+
},
|
|
25
|
+
"license": "MIT",
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "git+https://github.com/SWBaek/sdoc-editor.git"
|
|
29
|
+
}
|
|
30
|
+
}
|