-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 971 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 971 Bytes
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
{
"name": "metascope",
"version": "0.1.0",
"description": "Interactive terminal file viewer with syntax highlighting (Metarhia)",
"license": "MIT",
"keywords": [
"metarhia",
"cli",
"viewer",
"syntax",
"markdown",
"terminal"
],
"bin": {
"metascope": "./bin/metascope.js"
},
"main": "lib/app.js",
"files": [
"bin/",
"lib/"
],
"engines": {
"node": ">=18"
},
"dependencies": {
"concolor": "^1.1.4",
"metautil": "^5.5.2"
},
"scripts": {
"enable": "node scripts/enable.js",
"disable": "node scripts/disable.js",
"test": "npm run lint && node --test \"test/*.js\"",
"lint": "eslint . && prettier --check \"**/*.js\" \"**/*.json\" \"**/*.md\"",
"fix": "eslint . --fix && prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\""
},
"devDependencies": {
"eslint": "^9.39.4",
"eslint-config-metarhia": "^9.1.9",
"metaskills": "^1.0.4",
"prettier": "^3.8.4"
}
}