-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 2.47 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "cpace",
"version": "1.2.4",
"description": "Nodemon for C/C++ files. Monitor for any changes in your [.c] and [.cpp] application and automatically restart it - perfect for development",
"preferGlobal": true,
"main": "./build/index.js",
"types": "./build/index.d.ts",
"bin": {
"cpace": "./build/cli.js"
},
"scripts": {
"dev": "nodemon",
"build": "rollup -c rollup.config.mjs",
"clear": "rm -rf build",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --check src/**/*.ts",
"format:fix": "prettier --write src/**/*.ts",
"test:lib": "pnpm build && pnpm link cpace -g",
"release": "release-it"
},
"dependencies": {
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"cpace": "^1.2.0",
"simple-update-notifier": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.19.1",
"@babel/preset-typescript": "^7.17.12",
"@release-it/conventional-changelog": "^5.1.0",
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.3",
"release-it": "^15.4.2",
"rollup": "^3.17.2",
"rollup-plugin-ts": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"files": [
"build",
"src"
],
"license": "ISC",
"author": {
"name": "Oleshkooo",
"url": "https://github.com/Oleshkooo"
},
"homepage": "https://github.com/Oleshkooo/npm-cpace#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Oleshkooo/npm-cpace.git"
},
"bugs": {
"url": "https://github.com/Oleshkooo/npm-cpace/issues"
},
"keywords": [
"cpace",
"cli",
"monitor",
"monitor",
"development",
"restart",
"autoreload",
"reload",
"terminal",
"c",
"c++",
"cpp"
]
}