-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 967 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
42
43
44
{
"name": "colombo",
"version": "2.2.0",
"description": "🕵️♂️ View Javascript source code using source-map from CLI",
"keywords": [
"sourcemap",
"source code",
"viewer",
"debug",
"🕵️♂️"
],
"author": "omrilotan",
"license": "Unlicense",
"homepage": "https://omrilotan.com/colombo/",
"repository": {
"type": "git",
"url": "git+https://github.com/omrilotan/colombo.git"
},
"bugs": {
"url": "https://github.com/omrilotan/colombo/issues/new/choose"
},
"engines": {
"node": ">=18"
},
"type": "module",
"main": "index.js",
"bin": "bin.js",
"man": "man",
"scripts": {
"format": "prettier --write .",
"start": "./bin.js"
},
"dependencies": {
"chalk": "^5.3.0",
"inquirer": "^9.2.12",
"semver": "^7.5.4",
"source-map": "^0.8.0-beta.0",
"source-map-url": "^0.4.0",
"stdline": "^1.1.1"
},
"devDependencies": {
"prettier": "^3.2.2"
}
}