-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.02 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.02 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
{
"name": "@codeshareme/codeshare-cli",
"version": "1.1.3",
"description": "Official CLI for codeshare.me — push, pull and version-control your code snippets",
"homepage": "https://codeshare.me",
"license": "MIT",
"keywords": [
"codeshare",
"cli",
"code",
"snippets",
"version-control"
],
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist"
],
"bin": {
"cs": "dist/index.js"
},
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"prepublishOnly": "npm run build"
},
"dependencies": {
"commander": "^12.0.0",
"chalk": "^5.3.0",
"ora": "^8.0.1",
"glob": "^10.4.1",
"ignore": "^5.3.1",
"diff": "^5.2.0",
"prompts": "^2.4.2",
"fs-extra": "^11.2.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/diff": "^5.2.1",
"@types/fs-extra": "^11.0.4",
"@types/prompts": "^2.4.9",
"typescript": "^5.4.0",
"tsx": "^4.7.0"
},
"type": "module"
}