-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.21 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.21 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
{
"name": "nomouse-cli",
"version": "2.1.3",
"description": "A CLI tool for competitive programmers to quickly create, execute, and copy files",
"main": "index.js",
"type": "module",
"scripts": {
"test": "node index.js gen test.cpp && node index.js run test.cpp && node index.js wind",
"start": "node index.js",
"gen": "node index.js gen test.cpp",
"run": "node index.js run test.cpp",
"wind": "node index.js wind",
"set": "node index.js set .cpp",
"status": "node index.js status",
"pause": "node index.js pause",
"resume": "node index.js resume",
"clear": "node index.js clear",
"version": "node index.js -v"
},
"bin": {
"nms": "index.js"
},
"dependencies": {
"chalk": "^5.6.2",
"clipboardy": "^5.0.0",
"commander": "^14.0.1",
"env-paths": "^3.0.0",
"fs-extra": "^11.3.2"
},
"devDependencies": {
"nodemon": "^3.0.2"
},
"keywords": [
"cli",
"competitive-programming",
"template",
"code-generation",
"file-management"
],
"author": "TrueRyoB",
"repository": {
"type": "git",
"url": "git+https://github.com/TrueRyoB/nomouse-cli.git"
},
"license": "MIT"
}