-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.53 KB
/
package.json
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "tinyneat",
"author": "Weaver Goldman <we.goldm@gmail.com>",
"description": "TinyNEAT is a tiny, js-native NEAT (NeuroEvolution of Augmenting Topologies) library, meant to easily incorporate into any codebase.",
"version": "1.1.0",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/We-Gold/tinyneat"
},
"bugs": {
"url": "https://github.com/We-Gold/tinyneat/issues"
},
"keywords": [
"neat",
"neat-algorithm",
"neuroevolution",
"neural-network",
"machine-learning",
"ga",
"genetic-algorithm",
"p5js"
],
"files": [
"dist"
],
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "vite build && tsc",
"preview": "vite preview",
"test": "vitest",
"bench": "vitest bench",
"docs": "typedoc",
"pack-test": "npm pack --dry-run",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts ./src",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"format-check": "prettier --ignore-path .gitignore --check \"**/*.+(js|ts|json)\""
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"prettier": "^3.0.0",
"typedoc": "^0.24.8",
"typedoc-theme-hierarchy": "^4.0.0",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vitest": "^0.33.0"
}
}