-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.14 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.14 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
{
"name": "create-web3-sdk",
"author": "Vasile Gabriel",
"version": "1.3.2",
"description": "Quickly create a Web3 SDK with built in TypeScript, Biome, Vitest, viem, and more.",
"keywords": [
"web3",
"sdk",
"typescript",
"ethereum",
"blockchain",
"viem",
"biome",
"vitest"
],
"type": "module",
"main": "./dist/src/create.js",
"types": "./dist/src/create.d.ts",
"bin": {
"create-web3-sdk": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"create-web3-sdk": "node dist/index.js",
"start": "node dist/index.js",
"changeset": "changeset",
"version": "changeset version",
"release": "npm run build && changeset publish --access public"
},
"dependencies": {
"commander": "^11.0.0",
"ora": "^7.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"@changesets/cli": "^2.27.11"
},
"repository": {
"type": "git",
"url": "https://github.com/VGabriel45/create-web3-sdk.git"
},
"homepage": "https://github.com/VGabriel45/create-web3-sdk.git",
"license": "MIT"
}