-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.13 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
40
41
42
43
44
45
{
"name": "create-ic",
"version": "0.6.2",
"description": "A simple command line tool for initializing projects with Juno or guiding developers to the Internet Computer documentation",
"type": "module",
"bin": "dist/index.js",
"main": "dist/index.js",
"files": [
"dist/index.js",
"README.md",
"LICENSE"
],
"scripts": {
"format": "prettier . --write",
"build": "node rmdir.mjs && node esbuild.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peterpeterparker/create-ic.git"
},
"author": "David Dal Busco",
"license": "MIT",
"bugs": {
"url": "https://github.com/peterpeterparker/create-ic/issues"
},
"homepage": "https://github.com/peterpeterparker/create-ic#readme",
"dependencies": {
"@junobuild/cli-tools": "^0.0.8",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/prompts": "^2.4.9",
"esbuild": "^0.20.2",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"typescript": "^5.4.5"
},
"keywords": [
"zero-configuration",
"buildtools",
"cli",
"internet-computer",
"internetcomputer"
]
}