-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.56 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
{
"name": "@fnndsc/chell",
"version": "4.2.8",
"description": "ChELL Executes Layered Logic - Interactive ChRIS REPL Shell",
"repository": {
"type": "git",
"url": "git+https://github.com/FNNDSC/chell.git"
},
"homepage": "https://github.com/FNNDSC/chell#readme",
"bugs": {
"url": "https://github.com/FNNDSC/chell/issues"
},
"main": "dist/index.js",
"type": "module",
"bin": {
"chell": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && chmod +x ./dist/index.js",
"start": "node dist/index.js",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest --forceExit"
},
"keywords": [
"chris",
"fnndsc",
"cli",
"repl",
"shell"
],
"author": "FNNDSC <dev@babyMRI.org>",
"license": "MIT",
"dependencies": {
"@fnndsc/chili": "^3.2.5",
"@fnndsc/cumin": "^3.2.4",
"@fnndsc/salsa": "^3.2.4",
"chalk": "^4.1.2",
"cli-progress": "^3.12.0",
"commander": "^12.1.0",
"figlet": "^1.7.0",
"js-yaml": "^4.1.0",
"marked": "^15.0.12",
"marked-terminal": "^7.3.0",
"minimatch": "^10.1.1",
"ws": "^8.21.0"
},
"devDependencies": {
"@types/cli-progress": "^3.11.6",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.5",
"@types/minimatch": "^5.1.2",
"@types/node": "^20.11.0",
"@types/ws": "^8.18.1",
"jest": "^30.2.0",
"ts-jest": "^29.4.5",
"typescript": "^5.5.2"
},
"overrides": {
"glob": "^10.0.0",
"inflight": "npm:@aashutoshrathi/word-wrap@^1.2.6",
"node-domexception": "npm:undici-types@^6.19.8"
}
}