-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
55 lines (55 loc) · 1.44 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
{
"name": "@shumai/shumai",
"version": "0.0.14",
"module": "shumai/index.ts",
"type": "module",
"scripts": {
"format": "eslint '**/*.{js,ts}' '*.{js,ts,cjs}' package.json --fix",
"typedoc": "typedoc --tsconfig tsconfig.typedoc.json"
},
"bin": {
"shumai": "./shumai/run.ts"
},
"files": [
"shumai/**/*.ts",
"dist/**/*.d.ts"
],
"types": "dist/shumai/index.d.ts",
"keywords": [
"bun",
"flashlight",
"gpu",
"tensor",
"array",
"machine",
"learning",
"ai"
],
"devDependencies": {
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"bun-types": "^0.5.7",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"prettier": "^2.7.1",
"typedoc": "^0.23.20",
"typedoc-plugin-katex": "^0.1.2",
"typescript": "^4.8.4"
},
"optionalDependencies": {
"@shumai/darwin_arm64_shumai_flashlight": "latest",
"@shumai/darwin_x64_shumai_flashlight": "latest",
"@shumai/linux_arm64_shumai_flashlight_cpu": "latest",
"@shumai/linux_x64_shumai_flashlight": "latest",
"@shumai/linux_x64_shumai_flashlight_cpu": "latest"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/facebookresearch/shumai.git"
},
"homepage": "https://facebookresearch.github.io/shumai/"
}