-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.09 KB
/
Copy pathpackage.json
File metadata and controls
126 lines (126 loc) · 3.09 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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@oasisbio/oasiswaker",
"version": "1.0.0",
"description": "Your cloud, the network. Contribute. Connect. Decentralize. CLI tool for contributing Cloudflare, Vercel, and Supabase resources to OasisBio's decentralized network",
"type": "module",
"keywords": [
"oasisbio",
"oasiswaker",
"decentralized",
"cloudflare",
"vercel",
"supabase",
"serverless",
"edge-computing",
"cli",
"cloud",
"infrastructure",
"web3",
"web3-infrastructure"
],
"homepage": "https://github.com/oasisbio/oasiswaker#readme",
"repository": {
"type": "git",
"url": "https://github.com/oasisbio/oasiswaker.git"
},
"bugs": {
"url": "https://github.com/oasisbio/oasiswaker/issues",
"email": "support@oasisbio.com"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/oasisbio"
},
"author": {
"name": "OasisBio",
"email": "support@oasisbio.com",
"url": "https://oasisbio.com"
},
"contributors": [
{
"name": "OasisBio Team",
"email": "support@oasisbio.com",
"url": "https://github.com/oasisbio"
}
],
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"oasiswaker": "./dist/cli/index.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./cli": {
"import": "./dist/cli/index.js",
"types": "./dist/cli/index.d.ts"
},
"./crypto": {
"import": "./dist/crypto/index.js",
"types": "./dist/crypto/index.d.ts"
},
"./config": {
"import": "./dist/config/index.js",
"types": "./dist/config/index.d.ts"
}
},
"files": [
"dist",
"src",
"LICENSE",
"README.md",
".env.example"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run build",
"postpublish": "git push --follow-tags origin main"
},
"dependencies": {
"axios": "^1.7.7",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"inquirer": "^9.2.23",
"open": "^10.1.0",
"ora": "^8.1.0",
"uuid": "^10.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^22.7.9",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"@vitest/coverage-v8": "^2.1.3",
"eslint": "^9.13.0",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
},
"engines": {
"node": ">=18.0.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"tag": "latest"
},
"sideEffects": false,
"packageManager": "pnpm@11.11.0+sha512.4463f65fd80ed80d69bc1d4bf163ee94f605c7380fc318bb5b2ebe15f8cd12d49c51a4d59e951b401e764d3b6ca751cbf51bc50ed7001a6bcb4935e684c34882"
}