generated from feremabraz/script-executable-publishable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 754 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
{
"author": "Fernando Braz <[email protected]> (https://gamekaiju.monster/)",
"bin": {
"cli-executable-publishable": "index.js"
},
"description": "Template to publish a CLI to NPM without a bundler.",
"devDependencies": {
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"prettier": "^3.0.0"
},
"keywords": [
"cli",
"publish",
"npm"
],
"license": "MIT",
"main": "index.js",
"name": "cli-executable-publishable",
"scripts": {
"check:lint": "pnpm exec eslint . && pnpm exec prettier . --check",
"lint": "pnpm exec eslint . --fix && pnpm exec prettier . --write"
},
"type": "module",
"version": "1.0.0",
"dependencies": {
"commander": "^11.0.0"
}
}