forked from shelby/shelby-quickstart
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.21 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.21 KB
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
{
"name": "shelby-quickstart",
"version": "1.0.1",
"description": "Simple samples to start serving with Shelby",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsup",
"start": "node dist/index.js",
"dev": "tsup --watch",
"clean": "rimraf dist",
"test": "vitest",
"test:run": "vitest run",
"type-check": "tsc --noEmit",
"config": "npx tsx src/guide/config.ts",
"upload": "npx tsx src/guide/upload.ts",
"download": "npx tsx src/guide/download.ts",
"list": "npx tsx src/guide/list.ts"
},
"keywords": [
"shelby",
"quickstart",
"sdk",
"blob",
"storage"
],
"os": [
"darwin",
"linux"
],
"author": "Akasha <akasha@shelby.xyz>",
"license": "MIT",
"dependencies": {
"@aptos-labs/ts-sdk": "^5.1.1",
"@inquirer/core": "^9.0.0",
"@inquirer/prompts": "^7.8.4",
"@shelby-protocol/sdk": "^0.0.7",
"chalk": "^5.6.2",
"filesize": "^11.0.13",
"ora": "^9.0.0",
"pretty-ms": "^9.3.0",
"yaml": "^2.8.1",
"zod": "^4.1.5"
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@types/node": "^24.3.1",
"dotenv": "^17.2.2",
"rimraf": "^6.0.1",
"tsup": "^8.5.0",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=22"
}
}