@braincrew-lab/langchain-canvas 0.1.0

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 ADDED
@@ -0,0 +1,63 @@
1
+ {
2
+ "name": "@braincrew-lab/langchain-canvas",
3
+ "version": "0.1.0",
4
+ "description": "A live canvas for LangChain agents — stream documents, charts, and rich artifacts into a React panel.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/braincrew-lab/langchain-canvas.git",
10
+ "directory": "packages/canvas-react"
11
+ },
12
+ "sideEffects": [
13
+ "*.css",
14
+ "./dist/index.js"
15
+ ],
16
+ "files": [
17
+ "dist",
18
+ "LICENSE"
19
+ ],
20
+ "comment": "Dev resolves to source (no build needed; Next transpiles via transpilePackages). publishConfig swaps to dist for npm.",
21
+ "main": "./dist/index.js",
22
+ "types": "./dist/index.d.ts",
23
+ "exports": {
24
+ ".": {
25
+ "types": "./dist/index.d.ts",
26
+ "import": "./dist/index.js"
27
+ },
28
+ "./styles.css": "./dist/styles.css"
29
+ },
30
+ "publishConfig": {
31
+ "access": "public"
32
+ },
33
+ "peerDependencies": {
34
+ "react": "^18 || ^19",
35
+ "react-dom": "^18 || ^19"
36
+ },
37
+ "dependencies": {
38
+ "@fortune-sheet/react": "^1.0.4",
39
+ "react-markdown": "^9.0.1",
40
+ "echarts": "^6.0.0",
41
+ "remark-gfm": "^4.0.0",
42
+ "zustand": "^4.5.4"
43
+ },
44
+ "optionalDependencies": {
45
+ "docx": "^9.0.2",
46
+ "exceljs": "^4.4.0",
47
+ "fast-formula-parser": "^1.0.19",
48
+ "pptxgenjs": "^3.12.0"
49
+ },
50
+ "devDependencies": {
51
+ "@types/react": "^19.0.0",
52
+ "jsdom": "^25",
53
+ "tsup": "^8.2.4",
54
+ "typescript": "^5.5.4",
55
+ "vitest": "^2"
56
+ },
57
+ "scripts": {
58
+ "build": "tsup",
59
+ "dev": "tsup --watch",
60
+ "typecheck": "tsc --noEmit",
61
+ "test": "vitest run"
62
+ }
63
+ }