-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.29 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
{
"name": "wstp-node",
"version": "1.1.29",
"description": "Native Node.js addon for Wolfram/Mathematica WSTP \u2014 kernel sessions with evaluation queue, streaming Print/messages, Dialog subsessions, and side-channel WstpReader",
"main": "build/Release/wstp.node",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/vanbaalon/mathematica-wstp-node.git"
},
"keywords": [
"wolfram",
"mathematica",
"wstp",
"native-addon",
"kernel",
"wolframscript"
],
"author": "vanbaalon",
"license": "MIT",
"os": [
"darwin",
"linux",
"win32"
],
"engines": {
"node": ">=18"
},
"files": [
"src/addon.cc",
"scripts/wstp_dir.js",
"scripts/install.js",
"scripts/diagnose-windows.ps1",
"build.sh",
"binding.gyp",
"index.d.ts",
"InstallationWindows.md",
"examples/",
"test.js",
"test_interrupt_dialog.js"
],
"scripts": {
"install": "node scripts/install.js",
"build": "node scripts/install.js",
"build:debug": "node scripts/install.js debug",
"clean": "node scripts/install.js clean",
"test": "node test.js",
"demo": "node examples/demo.js"
},
"dependencies": {
"node-addon-api": "^8.6.0"
},
"devDependencies": {
"node-gyp": "^12.2.0"
}
}