Files
agentic-studio/network-poc/frontend/node_modules/chokidar/package.json
Jaakko Vanhala a8c4af0975 Frontend uudelleenrakennettu: Astro-komponentit, Wasm pääsäikeessä, ei Workeria
Vanha frontend siirretty temp/. Uusi rakenne:
- StatusBar.astro, Terminal.astro, Editor.astro, Guide.astro
- global.css erillinen
- Wasm pääsäikeessä (ei Worker — yksinkertainen, debugattava)
- Tab-completion, dropdown, projektikortti, Monaco, GUIDE.md
- Ei tokenisointia eikä koodilaboratoriota

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-09 20:17:39 +03:00

64 lines
1.3 KiB
JSON

{
"name": "chokidar",
"description": "Minimal and efficient cross-platform file watching library",
"version": "5.0.0",
"type": "module",
"homepage": "https://github.com/paulmillr/chokidar",
"author": "Paul Miller (https://paulmillr.com)",
"files": [
"index.js",
"index.d.ts",
"handler.js",
"handler.d.ts"
],
"main": "./index.js",
"exports": {
".": {
"default": "./index.js"
},
"./handler.js": {
"default": "./handler.js"
}
},
"dependencies": {
"readdirp": "^5.0.0"
},
"devDependencies": {
"@paulmillr/jsbt": "0.4.5",
"@types/node": "24.10.1",
"prettier": "3.5.2",
"tinyspy": "3.0.2",
"typescript": "5.9.2",
"upath": "2.0.1"
},
"sideEffects": false,
"engines": {
"node": ">= 20.19.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paulmillr/chokidar.git"
},
"bugs": {
"url": "https://github.com/paulmillr/chokidar/issues"
},
"license": "MIT",
"scripts": {
"build": "tsc",
"lint": "prettier --check src",
"format": "prettier --write src",
"test": "node index.test.js",
"test:bun1": "bun index.test.js"
},
"keywords": [
"fs",
"watch",
"watchFile",
"watcher",
"watching",
"file",
"fsevents"
],
"funding": "https://paulmillr.com/funding/"
}