@xom11/whiteboard 0.2.1
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 +64 -0
- package/dist/ExcalidrawWithMenus-YGFFNZYY.mjs +22 -0
- package/dist/ExcalidrawWithMenus-YGFFNZYY.mjs.map +1 -0
- package/dist/index.css +74 -0
- package/dist/index.css.map +1 -0
- package/dist/index.d.mts +35 -0
- package/dist/index.d.ts +35 -0
- package/dist/index.js +2264 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +2223 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +82 -0
package/package.json
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@xom11/whiteboard",
|
|
3
|
+
"version": "0.2.1",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "Excalidraw + JSXGraph + KaTeX whiteboard component (drawing, geometry stamps, LaTeX stamps).",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "xom11",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/xom11/whiteboard.git"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://github.com/xom11/whiteboard#readme",
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/xom11/whiteboard/issues"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"excalidraw",
|
|
18
|
+
"whiteboard",
|
|
19
|
+
"jsxgraph",
|
|
20
|
+
"katex",
|
|
21
|
+
"react",
|
|
22
|
+
"nextjs",
|
|
23
|
+
"geometry",
|
|
24
|
+
"latex",
|
|
25
|
+
"classroom"
|
|
26
|
+
],
|
|
27
|
+
"main": "./dist/index.js",
|
|
28
|
+
"module": "./dist/index.mjs",
|
|
29
|
+
"types": "./dist/index.d.ts",
|
|
30
|
+
"exports": {
|
|
31
|
+
".": {
|
|
32
|
+
"types": "./dist/index.d.ts",
|
|
33
|
+
"import": "./dist/index.mjs",
|
|
34
|
+
"require": "./dist/index.js"
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"files": [
|
|
38
|
+
"dist"
|
|
39
|
+
],
|
|
40
|
+
"sideEffects": [
|
|
41
|
+
"*.css"
|
|
42
|
+
],
|
|
43
|
+
"publishConfig": {
|
|
44
|
+
"access": "public"
|
|
45
|
+
},
|
|
46
|
+
"scripts": {
|
|
47
|
+
"build": "tsup && node scripts/inject-use-client.mjs",
|
|
48
|
+
"dev": "tsup --watch --onSuccess \"node scripts/inject-use-client.mjs\"",
|
|
49
|
+
"test": "jest",
|
|
50
|
+
"typecheck": "tsc --noEmit",
|
|
51
|
+
"clean": "rm -rf dist .yalc yalc.lock",
|
|
52
|
+
"prepublishOnly": "npm run typecheck && npm run build"
|
|
53
|
+
},
|
|
54
|
+
"peerDependencies": {
|
|
55
|
+
"next": ">=14.0.0",
|
|
56
|
+
"react": ">=18.0.0",
|
|
57
|
+
"react-dom": ">=18.0.0"
|
|
58
|
+
},
|
|
59
|
+
"dependencies": {
|
|
60
|
+
"@excalidraw/excalidraw": "^0.18.1",
|
|
61
|
+
"jsxgraph": "^1.12.2",
|
|
62
|
+
"katex": "^0.16.45"
|
|
63
|
+
},
|
|
64
|
+
"devDependencies": {
|
|
65
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
66
|
+
"@testing-library/react": "^16.3.2",
|
|
67
|
+
"@testing-library/user-event": "^14.6.1",
|
|
68
|
+
"@types/jest": "^29.5.14",
|
|
69
|
+
"@types/katex": "^0.16.8",
|
|
70
|
+
"@types/node": "^22.0.0",
|
|
71
|
+
"@types/react": "^19.0.0",
|
|
72
|
+
"@types/react-dom": "^19.0.0",
|
|
73
|
+
"jest": "^29.7.0",
|
|
74
|
+
"jest-environment-jsdom": "^29.7.0",
|
|
75
|
+
"next": "16.1.6",
|
|
76
|
+
"react": "19.2.3",
|
|
77
|
+
"react-dom": "19.2.3",
|
|
78
|
+
"ts-jest": "^29.4.9",
|
|
79
|
+
"tsup": "^8.3.5",
|
|
80
|
+
"typescript": "^5.6.0"
|
|
81
|
+
}
|
|
82
|
+
}
|