-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 988 Bytes
/
package.json
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
{
"name": "bitcoin-on-starknet",
"version": "0.0.0",
"description": "A Bitcoin provider for Starknet integration",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"types": "dist/types/index.d.ts",
"type": "module",
"scripts": {
"build": "rollup -c",
"test": "npx jest",
"prepublishOnly": "npm run build",
"example": "bun example/index.ts"
},
"keywords": [
"bitcoin",
"starknet",
"typescript",
"provider"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@types/jest": "^29.5.13",
"cross-fetch": "^4.0.0",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"starknet": "^6.11.0",
"ts-jest": "^29.2.5"
},
"devDependencies": {
"@rollup/plugin-alias": "^4.0.2",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"rollup": "^4.24.0",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.6.3"
}
}