-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 952 Bytes
/
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
{
"name": "@nasa-jpl/aerie-ts-user-code-runner",
"version": "0.7.0",
"description": "A simple way to safely run user code written in Typescript.",
"main": "build/UserCodeRunner.js",
"type": "module",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rm -rf build && rm -rf docs",
"doc": "typedoc",
"prepare": "npm run build && npm run doc",
"test": "node --experimental-vm-modules --test --loader tsx `glob 'test/**/*.spec.ts'`",
"watch": "tsc -p tsconfig.json --watch"
},
"dependencies": {
"source-map": "^0.7.4",
"stack-trace": "^1.0.0-pre1"
},
"peerDependencies": {
"typescript": "4.x || 5.x"
},
"devDependencies": {
"@js-temporal/polyfill": "^0.4.3",
"@types/node": "^18.11.2",
"@types/stack-trace": "^0.0.30",
"expect": "^29",
"glob": "^10",
"prettier": "^2.7.1",
"tsx": "^3",
"typedoc": "^0.23.17",
"typescript": "^5"
}
}