-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
39 lines (39 loc) · 1.01 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
{
"name": "create-octoherd-script",
"version": "0.0.0-development",
"description": "CLI to create a new folder and repository for an Octoherd Script",
"type": "module",
"exports": "./cli.js",
"bin": {
"create-octoherd-script": "cli.js"
},
"repository": "github:octoherd/create-octoherd-script",
"keywords": [
"npm-init",
"octoherd"
],
"author": "Gregor Martynus (https://twitter.com/gr2m)",
"license": "ISC",
"scripts": {
"lint": "prettier --check 'lib/*.js' cli.js '**/*.md' '**/*.json'",
"lint:fix": "prettier --write 'lib/*.js' cli.js '**/*.md' '**/*.json'",
"test": "npm run lint"
},
"dependencies": {
"@octokit/auth-oauth-device": "^7.0.0",
"@octokit/core": "^6.0.0",
"camelcase": "^8.0.0",
"clipboardy": "^4.0.0",
"decamelize": "^6.0.0",
"execa": "^9.0.0",
"inquirer": "^12.0.0",
"prettier": "^3.0.0",
"spdx-license-list": "^6.3.0"
},
"devDependencies": {
"@types/node": "^22.0.0"
},
"engines": {
"node": ">= 18"
}
}