-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.17 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
75
76
77
78
79
80
81
82
83
84
85
{
"name": "instantcode",
"version": "2.0.0",
"description": "AI-powered web inspection tool - Pick elements and get instant AI assistance",
"type": "module",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"bin": {
"instantcode": "./dist/index.cjs"
},
"exports": {
".": {
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./vite-plugin": {
"import": "./dist/vite-plugin.js",
"types": "./dist/vite-plugin.d.ts"
}
},
"scripts": {
"dev": "bun src/index.ts",
"build:server": "bun scripts/build-server.js",
"build:annotator": "bun scripts/build-annotator.js",
"build:vite-plugin": "bun scripts/build-vite-plugin.js",
"build:types": "bun scripts/build-types.js",
"build": "bun run build:server && bun run build:annotator && bun run build:vite-plugin && bun run build:types",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run build"
},
"files": [
"dist/**/*",
"README.md"
],
"keywords": [
"frontend",
"ai",
"element-picker",
"web-development",
"server",
"inspector",
"debugging",
"claude"
],
"author": "Nguyen Van Duoc <nguyenvanduocit@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nguyenvanduocit/instantCode.git"
},
"homepage": "https://github.com/nguyenvanduocit/instantCode#readme",
"bugs": {
"url": "https://github.com/nguyenvanduocit/instantCode/issues"
},
"dependencies": {
"@floating-ui/dom": "^1.7.4",
"@modelcontextprotocol/sdk": "^1.0.0",
"@types/js-yaml": "^4.0.9",
"cors": "^2.8.5",
"express": "^5.1.0",
"html-to-image": "^1.11.13",
"js-yaml": "^4.1.0",
"lit": "^3.3.1",
"optimal-select": "^4.0.1",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"zod": "^4.0.17"
},
"devDependencies": {
"@types/bun": "^1.2.20",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.2",
"@types/node": "^22.13.4",
"esbuild": "^0.25.9",
"tsx": "^4.7.0",
"typescript": "^5.7.3",
"vite": "^6.0.7"
},
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"vite": ">=2.0.0"
}
}