-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.01 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "active-inference",
"version": "1.0.0",
"description": "Reproduces the simulations from [Friston et al. 2015 - \"Knowing one's place: a free-energy approach to pattern regulation\"](https://pmc.ncbi.nlm.nih.gov/articles/PMC4387527/).",
"main": "index.js",
"directories": {
"doc": "docs"
},
"type": "module",
"scripts": {
"test": "vitest",
"test:ui": "vitest --ui",
"build": "tsc",
"example": "tsx src/example.ts",
"example:dsl": "tsx src/example-dsl.ts",
"example:psychology": "tsx src/example-psychology.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fronx/active-inference.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fronx/active-inference/issues"
},
"homepage": "https://github.com/fronx/active-inference#readme",
"devDependencies": {
"@types/node": "^25.2.0",
"@vitest/ui": "^4.0.18",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}