-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.87 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.87 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
{
"name": "@earnwithalee/stacksrank-sdk",
"version": "1.2.0",
"description": "StacksRank SDK — Decentralized ranking, analytics, and smart contract toolkit for the Stacks Bitcoin L2 ecosystem",
"main": "sdk/index.js",
"module": "sdk/esm/index.js",
"types": "sdk/types/index.d.ts",
"exports": {
".": {
"require": "./sdk/index.js",
"types": "./sdk/types/index.d.ts"
}
},
"files": [
"sdk/index.js",
"sdk/esm/",
"sdk/types/",
"sdk/lib/",
"sdk/README.md",
"sdk/LICENSE"
],
"scripts": {
"dev": "serve .",
"build": "echo 'Build complete'",
"start": "serve .",
"test": "node sdk/test.js",
"test:contracts": "clarinet check",
"test:sdk": "node scripts/stx-client.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"stacks",
"clarity",
"defi",
"swap",
"vault",
"leaderboard",
"blockchain",
"talent-protocol",
"bitcoin-l2",
"hiro-api",
"smart-contracts",
"web3",
"stx",
"bitcoin"
],
"author": "Earnwithalee7890",
"license": "MIT",
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Earnwithalee7890/StacksRank.git"
},
"homepage": "https://github.com/Earnwithalee7890/StacksRank#readme",
"bugs": {
"url": "https://github.com/Earnwithalee7890/StacksRank/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@earnwithalee/stx-contract": "^1.0.0",
"@stacks/connect": "^7.8.2",
"@stacks/network": "^6.13.0",
"@stacks/transactions": "^6.13.0",
"@stacks/wallet-sdk": "^6.13.0",
"serve": "^14.2.0"
},
"devDependencies": {
"@types/node": "^20.11.5",
"@types/react": "^18.2.48",
"autoprefixer": "^10.4.17",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"postcss": "^8.4.33"
}
}