-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 964 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 964 Bytes
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
{
"name": "@b2s/staking-interface",
"version": "1.0.0",
"description": "React interface for B2S token staking",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest"
},
"keywords": [
"stacks",
"blockchain",
"staking",
"defi",
"web3",
"react",
"typescript"
],
"author": "wkalidev (zcodebase)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wkalidev/b2s-staking-interface.git"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"dependencies": {
"@stacks/connect": "^7.0.0",
"@stacks/network": "^6.0.0",
"@stacks/transactions": "^6.0.0"
},
"devDependencies": {
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"typescript": "^5.0.0",
"vite": "^5.0.0",
"vitest": "^1.0.0"
}
}