-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
41 lines (41 loc) · 895 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
35
36
37
38
39
40
41
{
"name": "flok-repl",
"version": "1.2.0",
"description": "REPL client for Flok",
"author": "Damián Silvani <[email protected]>",
"license": "GPL-3.0+",
"type": "module",
"files": [
"bin",
"dist"
],
"bin": "./bin/flok-repl.js",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"main": "./dist/index.cjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "tsc"
},
"dependencies": {
"@flok-editor/pubsub": "^1.0.1",
"command-exists": "^1.2.9",
"commander": "^10.0.0",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"glob": "^9.2.1",
"osc": "^2.4.3"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/debug": "^4.1.7",
"@types/node": "^18.14.6",
"typescript": "^4.9.4"
}
}