-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 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
{
"name": "ml-basic",
"version": "2.0.0",
"type": "module",
"description": "Lightweight, zero dependency, machine learning library",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"repository": "infinityfx-llc/ml-basic",
"author": "InfinityFX <[email protected]> (https://infinity-fx.com)",
"license": "GPL-3.0",
"bugs": "https://github.com/infinityfx-llc/ml-basic/issues",
"homepage": "https://github.com/infinityfx-llc/ml-basic#readme",
"funding": "https://ko-fi.com/infinityfx",
"keywords": [
"ml",
"machine learning",
"neural",
"network",
"ai",
"classifier",
"convolutional",
"recurrent",
"multithreading",
"zero dependency",
"lightweight"
],
"scripts": {
"build": "rollup -c --environment NODE_ENV:production",
"watch": "rollup -c -w"
},
"dependencies": {
"tslib": "^2.8.1"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"rollup": "^4.26.0",
"rollup-plugin-delete": "^2.1.0",
"typescript": "^5.6.3"
},
"browser": {
"fs": false
}
}