Files
agentic-studio/network-poc/frontend/node_modules/tsconfck/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

71 lines
1.6 KiB
JSON

{
"name": "tsconfck",
"version": "3.1.6",
"description": "A utility to work with tsconfig.json without typescript",
"license": "MIT",
"author": "dominikg",
"files": [
"bin",
"src",
"types",
"README.md",
"LICENSE",
"package.json"
],
"type": "module",
"bin": "bin/tsconfck.js",
"types": "types/index.d.ts",
"exports": {
".": {
"import": {
"types": "./types/index.d.ts",
"default": "./src/index.js"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/dominikg/tsconfck.git",
"directory": "packages/tsconfck"
},
"keywords": [
"typescript",
"tsconfig",
"tsconfig.json",
"jsconfig",
"jsconfig.json"
],
"bugs": {
"url": "https://github.com/dominikg/tsconfck/issues"
},
"homepage": "https://github.com/dominikg/tsconfck/tree/main/packages/tsconfck#readme",
"peerDependencies": {
"typescript": "^5.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"devDependencies": {
"@tsconfig/node18": "^18.2.4",
"@tsconfig/strictest": "^2.0.5",
"@vitest/coverage-v8": "^3.0.9",
"esbuild": "^0.25.1",
"isaacscript-tsconfig": "^7.0.1",
"tiny-glob": "^0.2.9",
"typescript": "^5.8.2",
"vitest": "^3.0.9"
},
"engines": {
"node": "^18 || >=20"
},
"scripts": {
"check:publint": "publint --strict",
"check:types": "tsc --noEmit",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"dts-buddy": "dts-buddy -m \"tsconfck:src/index.js\""
}
}