-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.75 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.75 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@digitaldefiance/node-accelerate",
"version": "2.0.3",
"description": "High-performance Apple Accelerate framework bindings for Node.js - 80+ optimized functions including BLAS, vDSP, and vForce",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"preinstall": "node scripts/check-platform.js",
"install": "node-gyp rebuild",
"build": "node-gyp rebuild",
"test": "node test.js",
"benchmark": "node benchmark-comprehensive.js",
"benchmark:simple": "node benchmark.js",
"compare": "node compare.js",
"prepublishOnly": "npm test",
"publish:public": "npm publish --access public"
},
"keywords": [
"accelerate",
"apple",
"silicon",
"m1",
"m2",
"m3",
"m4",
"blas",
"vdsp",
"matrix",
"vector",
"fft",
"ifft",
"convolution",
"correlation",
"trigonometry",
"statistics",
"signal-processing",
"window-functions",
"interpolation",
"performance",
"native",
"addon",
"simd",
"amx"
],
"author": "Digital Defiance, Jessica Mulein <jessica@digitaldefiance.org>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Digital-Defiance/node-accelerate.git"
},
"bugs": {
"url": "https://github.com/Digital-Defiance/node-accelerate/issues"
},
"homepage": "https://github.com/Digital-Defiance/node-accelerate#readme",
"dependencies": {
"node-addon-api": "^8.0.0"
},
"devDependencies": {
"node-gyp": "^10.0.0"
},
"os": [
"darwin"
],
"cpu": [
"arm64",
"x64"
],
"engines": {
"node": ">=18.0.0"
},
"files": [
"accelerate.cc",
"binding.gyp",
"index.js",
"index.d.ts",
"README.md",
"examples/",
"LICENSE",
"scripts/"
]
}