-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathdeno.json
20 lines (20 loc) · 857 Bytes
/
deno.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "@denosaurs/python",
"version": "0.4.4",
"exports": {
".": "./mod.ts",
"./ext/pip": "./ext/pip.ts"
},
"tasks": {
"check": "deno task check:mod && deno task check:ext && deno task check:examples",
"check:mod": "deno check --unstable-ffi mod.ts",
"check:ext": "deno check --unstable-ffi ext/*.ts",
"check:examples": "deno check --unstable-ffi examples/*.ts",
"test": "deno test --unstable-ffi -A test/test.ts",
"example:hello_python": "deno run -A --unstable-ffi examples/hello_python.ts",
"example:matplotlib": "deno run -A --unstable-ffi examples/matplotlib.ts",
"example:pip_import": "deno run -A --unstable-ffi examples/pip_import.ts",
"example:run_code": "deno run -A --unstable-ffi examples/run_code.ts",
"example:tensorflow": "deno run -A --unstable-ffi examples/tensorflow.ts"
}
}