@quickdapp/cli 3.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +21 -0
- package/README.md +38 -0
- package/dist/index.js +7817 -0
- package/package.json +37 -0
package/package.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@quickdapp/cli",
|
|
3
|
+
"version": "3.4.0",
|
|
4
|
+
"publishConfig": {
|
|
5
|
+
"access": "public"
|
|
6
|
+
},
|
|
7
|
+
"description": "CLI tool to scaffold new QuickDapp projects",
|
|
8
|
+
"author": "Ramesh Nair <ram@hiddentao.com>",
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"type": "module",
|
|
11
|
+
"bin": {
|
|
12
|
+
"create-quickdapp": "./dist/index.js"
|
|
13
|
+
},
|
|
14
|
+
"files": [
|
|
15
|
+
"dist"
|
|
16
|
+
],
|
|
17
|
+
"engines": {
|
|
18
|
+
"node": ">=22.0.0"
|
|
19
|
+
},
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "bun build src/index.ts --outdir dist --target node",
|
|
22
|
+
"dev": "bun run src/index.ts",
|
|
23
|
+
"typecheck": "tsc --noEmit",
|
|
24
|
+
"test": "bun test --preload ./tests/setup.ts",
|
|
25
|
+
"test:fast": "SKIP_SLOW_TESTS=true bun test"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@types/bun": "^1.2.16",
|
|
29
|
+
"@types/node": "^24.3.0",
|
|
30
|
+
"@types/tar": "^6.1.13",
|
|
31
|
+
"typescript": "^5.6.3"
|
|
32
|
+
},
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"commander": "^14.0.0",
|
|
35
|
+
"tar": "^7.0.0"
|
|
36
|
+
}
|
|
37
|
+
}
|