sketchmark 2.1.5 → 2.1.7

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/package.json CHANGED
@@ -1,59 +1,63 @@
1
- {
2
- "name": "sketchmark",
3
- "version": "2.1.5",
4
- "description": "Render kernel for Sketchmark visual documents.",
5
- "license": "MIT",
6
- "type": "commonjs",
7
- "main": "./dist/src/index.js",
8
- "types": "./dist/src/index.d.ts",
9
- "bin": {
10
- "sketchmark": "./bin/sketchmark.cjs"
11
- },
12
- "exports": {
13
- ".": {
14
- "types": "./dist/src/index.d.ts",
15
- "require": "./dist/src/index.js",
16
- "default": "./dist/src/index.js"
17
- },
18
- "./presets": {
19
- "types": "./dist/src/presets/index.d.ts",
20
- "require": "./dist/src/presets/index.js",
21
- "default": "./dist/src/presets/index.js"
22
- },
23
- "./browser-export": {
24
- "types": "./dist/src/browser-export.d.ts",
25
- "require": "./dist/src/browser-export.js",
26
- "default": "./dist/src/browser-export.js"
27
- },
28
- "./editor": {
29
- "types": "./bin/editor-ui.d.ts",
30
- "require": "./bin/editor-ui.cjs",
31
- "default": "./bin/editor-ui.cjs"
32
- },
33
- "./schema": {
34
- "default": "./schema/visual.schema.json"
35
- }
36
- },
37
- "scripts": {
38
- "build": "node scripts/build.cjs",
39
- "render": "node bin/sketchmark.cjs render",
40
- "test": "npm run build && node dist/tests/run.js",
41
- "prepublishOnly": "npm test"
42
- },
43
- "files": [
44
- "bin",
45
- "dist",
46
- "schema",
47
- "README.md"
48
- ],
49
- "dependencies": {
50
- "mp4-muxer": "^5.2.2"
51
- },
52
- "devDependencies": {
53
- "typescript": "^5.9.3"
54
- },
55
- "engines": {
56
- "node": ">=18"
57
- },
58
- "sideEffects": false
59
- }
1
+ {
2
+ "name": "sketchmark",
3
+ "version": "2.1.7",
4
+ "description": "Render kernel for Sketchmark visual documents.",
5
+ "license": "MIT",
6
+ "type": "commonjs",
7
+ "main": "./dist/src/index.js",
8
+ "types": "./dist/src/index.d.ts",
9
+ "bin": {
10
+ "sketchmark": "./bin/sketchmark.cjs"
11
+ },
12
+ "exports": {
13
+ ".": {
14
+ "types": "./dist/src/index.d.ts",
15
+ "require": "./dist/src/index.js",
16
+ "default": "./dist/src/index.js"
17
+ },
18
+ "./presets": {
19
+ "types": "./dist/src/presets/index.d.ts",
20
+ "require": "./dist/src/presets/index.js",
21
+ "default": "./dist/src/presets/index.js"
22
+ },
23
+ "./browser-export": {
24
+ "types": "./dist/src/browser-export.d.ts",
25
+ "require": "./dist/src/browser-export.js",
26
+ "default": "./dist/src/browser-export.js"
27
+ },
28
+ "./editor": {
29
+ "types": "./bin/editor-ui.d.ts",
30
+ "require": "./bin/editor-ui.cjs",
31
+ "default": "./bin/editor-ui.cjs"
32
+ },
33
+ "./schema": {
34
+ "default": "./schema/visual.schema.json"
35
+ }
36
+ },
37
+ "scripts": {
38
+ "build": "node scripts/build.cjs",
39
+ "build:exe": "node scripts/build-bun-executable.cjs",
40
+ "build:exe:win": "node scripts/build-bun-executable.cjs --target bun-windows-x64-baseline --outfile dist-bin/sketchmark.exe",
41
+ "build:exe:mac": "node scripts/build-bun-executable.cjs --target bun-darwin-arm64 --outfile dist-bin/sketchmark-macos-arm64",
42
+ "build:exe:linux": "node scripts/build-bun-executable.cjs --target bun-linux-x64-baseline --outfile dist-bin/sketchmark-linux-x64",
43
+ "render": "node bin/sketchmark.cjs render",
44
+ "test": "npm run build && node dist/tests/run.js",
45
+ "prepublishOnly": "npm test"
46
+ },
47
+ "files": [
48
+ "bin",
49
+ "dist",
50
+ "schema",
51
+ "README.md"
52
+ ],
53
+ "dependencies": {
54
+ "mp4-muxer": "^5.2.2"
55
+ },
56
+ "devDependencies": {
57
+ "typescript": "^5.9.3"
58
+ },
59
+ "engines": {
60
+ "node": ">=18"
61
+ },
62
+ "sideEffects": false
63
+ }