-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 941 Bytes
/
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
{
"name": "code2clipboard",
"version": "1.0.0",
"description": "Simple utility to copy multiple files to the clipboard",
"main": "dist/code2cb.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node build.mjs",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=18"
},
"author": "Jeff Rigby",
"license": "ISC",
"dependencies": {
"chalk": "^5.3.0",
"clipboardy": "^4.0.0",
"dotenv": "^16.4.1",
"file-type": "^19.0.0",
"istextorbinary": "^9.5.0",
"micromatch": "^4.0.5",
"mime-types": "^2.1.35",
"yargs": "^17.7.2"
},
"bin": {
"code2cb": "./dist/code2cb.js",
"code2clipboard": "./dist/code2cb.js"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"esbuild": "^0.24.2",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"prettier": "^3.2.5",
"typescript-eslint": "^8.18.2"
}
}