This repository was archived by the owner on Jan 29, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.23 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.23 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
{
"name": "cpprunner",
"description": "watches for changes, compiles and runs C/C++ file.",
"version": "1.0.3",
"license": "MIT",
"main": "dist/index.js",
"type": "commonjs",
"types": "dist/index.d.ts",
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon --esm src/index.ts",
"build": "tsc",
"prepare": "yarn build",
"cpprunner": "yarn start"
},
"dependencies": {
"dotenv": "^16.0.3",
"minimist": "^1.2.8",
"pino": "^8.11.0",
"pino-pretty": "^10.0.0"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/minimist": "^1.2.2",
"@types/node": "^18.15.3",
"@types/pino": "^7.0.5",
"nodemon": "^2.0.21",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/mind0bender/cpprunner.git"
},
"keywords": [
"cpp",
"c",
"cpprunner",
"gcc",
"g++"
],
"author": {
"name": "mind0bender",
"email": "mind0bender@gmail.com"
},
"bugs": {
"url": "https://github.com/mind0bender/cpprunner/issues"
},
"homepage": "https://github.com/mind0bender/cpprunner#readme",
"bin": "./dist/index.js",
"files": [
"dist/**/*"
],
"packageManager": "yarn@1.22.19"
}