-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.33 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.33 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
{
"name": "@taotao7/termdev",
"version": "0.4.5",
"description": "Terminal DevTools for Chrome DevTools Protocol (CDP)",
"module": "index.ts",
"type": "module",
"private": false,
"license": "MIT",
"files": [
"bin",
"src",
"index.ts",
"bun.lock",
"tsconfig.json"
],
"bin": {
"termdev": "./bin/termdev.js"
},
"scripts": {
"build": "bun run build.ts",
"prepublishOnly": "bun run build",
"termdev": "tsx ./index.ts",
"termdev:bun": "bun ./index.ts",
"dev": "tsx watch ./index.ts",
"dev:bun": "bun --hot ./index.ts",
"start": "tsx ./index.ts",
"start:bun": "bun ./index.ts",
"test": "bun test",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"chrome-remote-interface": "^0.33.2",
"gradient-string": "^3.0.0",
"ink": "^5.2.1",
"ink-text-input": "^6.0.0",
"react": "^18.3.1",
"tsx": "^4.7.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/chrome-remote-interface": "^0.31.14",
"@types/gradient-string": "^1.1.6",
"@types/node": "^20.0.0",
"@types/react": "^18.3.12",
"typescript": "^5.8.3"
},
"peerDependencies": {
"typescript": "^5"
},
"packageManager": "pnpm@10.6.1+sha512.40ee09af407fa9fbb5fbfb8e1cb40fbb74c0af0c3e10e9224d7b53c7658528615b2c92450e74cfad91e3a2dcafe3ce4050d80bda71d757756d2ce2b66213e9a3"
}