-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
74 lines (74 loc) · 1.9 KB
/
package.json
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": "terminosaurus",
"version": "3.0.0-rc.1",
"packageManager": "[email protected]+sha224.bc24d7f5afc738464f3d4e95f4e6e7829a35cee54a0fd527ea5baa83",
"workspaces": [
"website"
],
"exports": {
".": "./sources/index.ts",
"./package.json": "./package.json",
"./react": "./sources/react.tsx",
"./xterm": "./sources/xterm.tsx"
},
"imports": {
"#data/*.json": "./data/*.json",
"#sources/*.json": "./sources/*.json",
"#sources/deps/node-pty": {
"node": "./sources/deps/node-pty.node.ts",
"default": "./sources/deps/node-pty.unsupported.ts"
},
"#sources/deps/wasm": {
"browser": "./sources/deps/wasm.browser.ts",
"default": "./sources/deps/wasm.ts"
},
"#sources/*": "./sources/*.ts"
},
"dependencies": {
"@arcanis/slice-ansi": "^2.0.1",
"@xterm/addon-fit": "^0.9.0",
"mono-layout": "^0.14.3",
"node-pty": "^1.0.0",
"react-reconciler": "^0.29.0",
"react-refresh": "^0.14.0",
"term-strings": "^0.15.2",
"vscode-oniguruma": "^1.7.0",
"vscode-textmate": "^8.0.0",
"yogini": "^0.4.2",
"zen-observable": "^0.9.0"
},
"devDependencies": {
"@types/node": "^20.11.24",
"@types/react": "^18.0.26",
"@types/react-reconciler": "^0.28.0",
"@types/react-refresh": "^0.14.0",
"@types/zen-observable": "^0.8.3",
"@xterm/xterm": "^5.4.0",
"clipanion": "^3.2.1",
"esbuild": "^0.20.1",
"lorem-ipsum": "^2.0.8",
"react": "^18.2.0",
"tailwindcss": "^3.4.1",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
},
"peerDependencies": {
"react": "^18.2.0"
},
"publishConfig": {
"exports": {
".": "./dist/index.js",
"./package.json": "./package.json",
"./react": "./dist/react.js",
"./xterm": "./dist/xterm.js"
}
},
"scripts": {
"prepack": "node --import tsx ./scripts/build.ts"
},
"files": [
"dist",
"data"
]
}