-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.55 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.55 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
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
62
63
64
65
66
{
"name": "@kanaries/ml",
"version": "0.0.11",
"description": "machine learning lib in javascript",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"module": "./build/index.mjs",
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.mjs",
"require": "./build/index.js"
}
},
"scripts": {
"gen-data": "node scripts/run_gen_data.js",
"test": "jest",
"test:regen-data": "npm run gen-data",
"build": "vite build && tsc --emitDeclarationOnly --outDir build",
"doc": "docsify serve docs",
"dev": "NODE_ENV=development vite",
"build:example": "NODE_ENV=development vite build",
"preview": "vite preview"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kanaries/ml.git"
},
"prettier": {
"singleQuote": true,
"tabWidth": 4,
"printWidth": 120
},
"keywords": [
"machine learning",
"ML",
"AI",
"statistics",
"algorithms"
],
"author": {
"name": "Observed Observer",
"email": "270001151@qq.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Kanaries/ml/issues"
},
"homepage": "https://github.com/Kanaries/ml#readme",
"devDependencies": {
"@types/assert": "^1.5.1",
"@types/jest": "^29.5.14",
"@types/node": "^24.0.3",
"jest": "^29.7.0",
"jest-resolve": "^30.0.2",
"ts-jest": "^29.4.0",
"typescript": "^5.8.3",
"vega": "^5.13.0",
"vega-embed": "^6.10.0",
"vega-lite": "^6.0.0",
"vite": "^6.3.5"
},
"engines": {
"node": ">=20.0.0"
}
}