-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 964 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
{
"name": "@wp-blocks/create-pkg-cli",
"version": "0.0.1",
"description": "A cli that initialize a TypeScript block",
"license": "GPL-3.0",
"contributors": [
"Erik Golinelli <[email protected]> (https://codekraft.it/)",
"John Hooks <[email protected]> (https://johnhooks.io/)"
],
"homepage": "https://github.com/wp-blocks/create-pkg-cli",
"repository": {
"type": "git",
"url": "https://github.com/wp-blocks/create-pkg-cli.git"
},
"bugs": "https://github.com/wp-blocks/create-pkg-cli/issues",
"type": "module",
"types": "lib/index.d.ts",
"main": "./bin.js",
"files": [
"lib/",
"bin.js"
],
"scripts": {
"format": "prettier --write ."
},
"dependencies": {
"@wp-blocks/utils": "^0.1.0",
"kleur": "^4.1.5",
"prettier-package-json": "2.8.0",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/prompts": "^2.4.2",
"prettier": "^2.8.2"
}
}