-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.09 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
46
47
48
49
50
51
{
"name": "create-lasereyes",
"version": "0.0.22",
"description": "Interactive setup for LaserEyes projects",
"main": "./dist/bin/script.js",
"bin": {
"create-lasereyes": "./dist/bin/script.js"
},
"files": [
"dist",
"templates"
],
"type": "module",
"keywords": [
"cli",
"nextjs",
"laser-eyes",
"scaffold",
"template"
],
"author": "Omnisat",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/omnisat/create-lasereyes"
},
"scripts": {
"build": "tsc",
"postbuild": "node dist/bin/fix-shebang.js"
},
"dependencies": {
"cac": "^6.7.14",
"cross-spawn": "^7.0.5",
"inquirer": "^9.0.0",
"picocolors": "^1.1.1",
"prompts": "^2.4.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@omnisat/lasereyes": "latest",
"@types/cross-spawn": "^6.0.6",
"@types/inquirer": "^9.0.0",
"@types/node": "^20.0.0",
"@types/prompts": "^2.4.9",
"@types/yargs": "^17.0.33",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"ts-node": "^10.0.0",
"typescript": "^5.0.0"
}
}