-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@sim/workflow-renderer",
"version": "0.1.0",
"private": true,
"sideEffects": [
"**/*.css",
"**/note-block-view.tsx"
],
"type": "module",
"license": "Apache-2.0",
"engines": {
"bun": ">=1.4.1",
"node": ">=20.0.0"
},
"exports": {
".": {
"types": "./src/index.ts",
"default": "./src/index.ts"
},
"./dimensions": {
"types": "./src/dimensions.ts",
"default": "./src/dimensions.ts"
},
"./note-colors": {
"types": "./src/note/note-colors.ts",
"default": "./src/note/note-colors.ts"
},
"./note-content": {
"types": "./src/note/note-content.ts",
"default": "./src/note/note-content.ts"
},
"./formatted-text": {
"types": "./src/formatted-text.tsx",
"default": "./src/formatted-text.tsx"
}
},
"scripts": {
"type-check": "tsc --noEmit",
"lint": "biome check --write --unsafe .",
"lint:check": "biome check .",
"format": "biome format --write .",
"format:check": "biome format .",
"test": "vitest run"
},
"peerDependencies": {
"@sim/emcn": "workspace:*",
"@sim/utils": "workspace:*",
"@sim/workflow-types": "workspace:*",
"@xyflow/react": "^12.11.3",
"react": "^19",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"streamdown": ">=2.5.0"
},
"devDependencies": {
"@sim/emcn": "workspace:*",
"@sim/tsconfig": "workspace:*",
"@sim/utils": "workspace:*",
"@sim/workflow-types": "workspace:*",
"@testing-library/jest-dom": "^6.6.3",
"@types/hast": "^3.0.4",
"@types/react": "^19",
"@types/react-dom": "^19",
"@xyflow/react": "12.11.3",
"jsdom": "^26.0.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"streamdown": "2.5.0",
"typescript": "^7.0.2",
"vitest": "^4.1.0"
}
}