-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.74 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
{
"name": "@ably/react-web-cli",
"version": "1.0.0",
"description": "React component for embedding the Ably CLI in a web terminal",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"test": "vitest run --passWithNoTests",
"test:debug": "vitest run --passWithNoTests --reporter verbose"
},
"keywords": [
"ably",
"cli",
"react",
"terminal",
"xterm"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ably/ably-cli.git"
},
"bugs": {
"url": "https://github.com/ably/ably-cli/issues"
},
"author": "Ably <support@ably.com>",
"license": "Apache-2.0",
"files": [
"dist"
],
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"dependencies": {
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-serialize": "^0.14.0",
"@xterm/addon-unicode11": "^0.9.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/addon-webgl": "^0.19.0",
"@xterm/xterm": "^6.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"@vitest/ui": "^4.1.9",
"eslint-plugin-react": "^7.37.5",
"lucide-react": "^1.14.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vite": "8.1.3",
"vitest": "^4.1.9"
},
"publishConfig": {
"access": "public"
}
}