Files
mp-silma-ai-aide/package.json
T

36 lines
913 B
JSON
Raw Normal View History

2026-07-17 14:08:03 -05:00
{
"name": "mp-silma-ai-aide",
"version": "1.0.0",
"description": "Chrome extension popup built with Vite for Silma AI aide workflows.",
"private": true,
"type": "module",
"scripts": {
2026-07-17 14:16:54 -05:00
"codex:setup": "npm ci",
"dev": "vite --host 0.0.0.0",
"dev:codex": "npm run dev",
"prebuild": "node scripts/generate-local-context.mjs",
2026-07-17 14:16:54 -05:00
"build": "tsc --noEmit && vite build && npm run verify:dist",
"build:codex": "npm run build",
"preview": "vite preview --host 0.0.0.0",
"verify:dist": "node scripts/verify-dist.mjs"
2026-07-17 14:08:03 -05:00
},
"keywords": [],
"author": "",
"license": "ISC",
2026-07-17 14:16:54 -05:00
"deploy": {
"outputDir": "dist"
},
2026-07-17 14:08:03 -05:00
"dependencies": {
"axios": "^1.18.1",
"dotenv": "^17.4.2",
"lucide": "^1.25.0",
2026-07-17 14:08:03 -05:00
"zustand": "^5.0.14"
},
"devDependencies": {
"@types/chrome": "^0.2.2",
"@types/node": "^26.1.1",
"typescript": "^7.0.2",
"vite": "^8.1.5"
}
}