microboard-temp 0.1.5 → 0.1.6
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 +11 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "microboard-temp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "A flexible interactive whiteboard library",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
"dist"
|
|
27
27
|
],
|
|
28
28
|
"scripts": {
|
|
29
|
-
"build:browser:esm": "bun build ./src/browser-entry.ts --outdir ./dist/esm --target browser --format esm",
|
|
30
|
-
"build:browser:cjs": "bun build ./src/browser-entry.ts --outdir ./dist/cjs --target browser --format cjs",
|
|
31
|
-
"build:node:esm": "bun build ./src/node-entry.ts --outdir ./dist/esm --target node --format esm",
|
|
32
|
-
"build:node:cjs": "bun build ./src/node-entry.ts --outdir ./dist/cjs --target node --format cjs",
|
|
29
|
+
"build:browser:esm": "bun build ./src/browser-entry.ts --outdir ./dist/esm --target browser --format esm --outfile browser.js",
|
|
30
|
+
"build:browser:cjs": "bun build ./src/browser-entry.ts --outdir ./dist/cjs --target browser --format cjs --outfile browser.js",
|
|
31
|
+
"build:node:esm": "bun build ./src/node-entry.ts --outdir ./dist/esm --target node --format esm --outfile node.js",
|
|
32
|
+
"build:node:cjs": "bun build ./src/node-entry.ts --outdir ./dist/cjs --target node --format cjs --outfile node.js",
|
|
33
33
|
"build:index:esm": "bun build ./src/index.ts --outdir ./dist/esm --target browser --format esm",
|
|
34
34
|
"build:index:cjs": "bun build ./src/index.ts --outdir ./dist/cjs --target browser --format cjs",
|
|
35
35
|
"build:types": "tsc --noEmit false --emitDeclarationOnly --declaration --declarationDir ./dist/types --skipLibCheck",
|
|
@@ -38,14 +38,9 @@
|
|
|
38
38
|
"test": "bun test",
|
|
39
39
|
"lint": "eslint src/**/*.{ts,tsx}"
|
|
40
40
|
},
|
|
41
|
-
"dependencies": {
|
|
42
|
-
"uuid": "^11.1.0",
|
|
43
|
-
"slate": "^0.114.0",
|
|
44
|
-
"rbush": "^4.0.1",
|
|
45
|
-
"rbush-knn": "^4.0.0",
|
|
46
|
-
"bezier-js": "^6.1.4"
|
|
47
|
-
},
|
|
41
|
+
"dependencies": {},
|
|
48
42
|
"peerDependencies": {
|
|
43
|
+
"slate": "^0.114.0",
|
|
49
44
|
"slate-react": "^0.114.2"
|
|
50
45
|
},
|
|
51
46
|
"peerDependenciesMeta": {
|
|
@@ -54,6 +49,10 @@
|
|
|
54
49
|
}
|
|
55
50
|
},
|
|
56
51
|
"devDependencies": {
|
|
52
|
+
"uuid": "^11.1.0",
|
|
53
|
+
"rbush": "^4.0.1",
|
|
54
|
+
"rbush-knn": "^4.0.0",
|
|
55
|
+
"bezier-js": "^6.1.4",
|
|
57
56
|
"typescript": "^5.8.3",
|
|
58
57
|
"eslint": "^9.27.0",
|
|
59
58
|
"bun-types": "^1.2.13",
|