-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
100 lines (100 loc) · 2.57 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "create-turbo-eth",
"version": "0.7.2",
"description": "Create web3 apps in turbo mode.",
"author": "Vitor @marthendalnunes",
"license": "MIT",
"repository": "https://github.com/turbo-eth/create-turbo-eth",
"keywords": [
"create-turbo-eth",
"turbo-eth",
"template",
"web3",
"ethereum",
"next.js",
"react",
"typescript",
"tailwindcss"
],
"type": "module",
"bin": {
"create-turbo-eth": "./bin/run.js"
},
"homepage": "https://github.com/turbo-eth/create-turbo-eth",
"exports": "./index.js",
"files": [
"/bin",
"/dist",
"/template",
"/template/base/.gitignore",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@inquirer/prompts": "^2.1.1",
"@oclif/core": "^2.8.7",
"@oclif/plugin-help": "^5",
"@oclif/plugin-plugins": "^2.4.7",
"chalk": "4.1.2",
"cpy": "^10.1.0",
"degit": "^2.8.4",
"execa": "^7.1.1",
"fs-extra": "^11.1.1",
"validate-npm-package-name": "^5.0.0",
"zod": "^3.21.4"
},
"packageManager": "[email protected]",
"devDependencies": {
"@oclif/test": "^2.3.22",
"@types/chai": "^4",
"@types/degit": "^2.8.3",
"@types/fs-extra": "^11.0.1",
"@types/inquirer": "^9.0.3",
"@types/mocha": "^9.0.0",
"@types/node": "^16.18.34",
"@types/validate-npm-package-name": "^4.0.0",
"chai": "^4",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4",
"eslint-config-oclif-typescript": "^1.0.3",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^9",
"oclif": "^3",
"shx": "^0.3.3",
"ts-node": "^10.9.1",
"tslib": "^2.5.3",
"typescript": "^4.9.5"
},
"oclif": {
"bin": "create-turbo-eth",
"dirname": "create-turbo-eth",
"commands": "./dist/commands",
"default": ".",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
],
"topicSeparator": " ",
"topics": {
"hello": {
"description": "Say hello to the world and others"
}
}
},
"scripts": {
"dev": " ./bin/dev.js",
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint . --ext .ts --config .eslintrc",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "pnpm lint",
"prepack": "pnpm build ",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md"
},
"engines": {
"node": ">=18.0.0"
},
"bugs": "https://github.com/turbo-eth/create-turbo-eth/issues/new?assignees=&labels=&projects=&template=bug_report.yml",
"types": "dist/index.d.ts"
}