instantcode
Version:
AI-powered web inspection tool - Pick elements and get instant AI assistance
86 lines • 2.23 kB
JSON
{
"name": "instantcode",
"version": "1.9.2",
"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:inspector": "bun scripts/build-inspector.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:inspector && 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": {
"@anthropic-ai/claude-code": "^1.0.83",
"@trpc/client": "^11.4.4",
"@trpc/server": "^11.4.4",
"@types/js-yaml": "^4.0.9",
"cors": "^2.8.5",
"express": "^5.1.0",
"js-yaml": "^4.1.0",
"lit": "^3.3.1",
"optimal-select": "^4.0.1",
"superjson": "^2.2.2",
"ws": "^8.18.3",
"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",
"@types/ws": "^8.18.1",
"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"
}
}