-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpackage.json
50 lines (50 loc) · 1.43 KB
/
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
41
42
43
44
45
46
47
48
49
50
{
"name": "@dojoengine/create-burner",
"version": "1.1.3",
"description": "dojo: Useful hooks and functions to create a Starknet burner wallet",
"author": "Loaf",
"license": "MIT",
"source": "src/index.ts",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsup --dts-resolve",
"test": "vitest run --coverage"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"starknet": "catalog:"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@scure/bip32": "^1.4.0",
"@testing-library/react": "^16.0.1",
"@testing-library/react-hooks": "^8.0.1",
"@types/js-cookie": "^3.0.6",
"@types/node": "^18.19.50",
"@types/react": "^18.3.9",
"@types/react-dom": "^18.3.0",
"@types/web": "^0.0.114",
"@vitest/coverage-v8": "^1.6.0",
"jsdom": "^24.1.3",
"tsup": "^8.3.0",
"typescript": "^5.6.2",
"vitest": "^1.6.0"
},
"dependencies": {
"@dojoengine/core": "workspace:*",
"@scure/bip32": "^1.5.0",
"@starknet-react/core": "catalog:",
"encoding": "^0.1.13",
"get-starknet-core": "catalog:",
"js-cookie": "^3.0.5"
}
}