36 lines
1,006 B
JSON
36 lines
1,006 B
JSON
{
|
|
"name": "@flybrain/brain",
|
|
"version": "0.1.1",
|
|
"description": "Connectome-constrained spiking network (FlyWire FAFB), reward-modulated plasticity, and population-rate readout for driving games from a simulated fly brain.",
|
|
"license": "Apache-2.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "./src/index.ts",
|
|
"types": "./src/index.ts",
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./node": "./src/dataset/load-node.ts",
|
|
"./browser": "./src/dataset/load-browser.ts",
|
|
"./view": "./src/view/connectome.ts",
|
|
"./view/layout": "./src/view/layout.ts"
|
|
},
|
|
"scripts": {
|
|
"test": "node --import tsx --test tests/**/*.test.ts",
|
|
"typecheck": "tsc -p tsconfig.json --pretty false"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "22.17.0",
|
|
"@types/three": "0.178.1",
|
|
"three": "0.178.0",
|
|
"tsx": "4.20.3",
|
|
"typescript": "5.9.2"
|
|
},
|
|
"peerDependencies": {
|
|
"three": "^0.178.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"three": {
|
|
"optional": true
|
|
}
|
|
}
|
|
}
|