-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpackage.json
40 lines (40 loc) · 942 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": "@bibliothecadao/eternum",
"version": "0.2.0",
"description": "Eternum SDK for Starknet & Dojo",
"license": "MIT",
"author": "Loaf",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"scripts": {
"build": "tsup",
"gen:docs": "typedoc --plugin typedoc-plugin-markdown",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest"
},
"dependencies": {
"@dojoengine/core": "1.0.0-alpha.24",
"@latticexyz/utils": "^2.0.0-next.12",
"@scure/starknet": "^1.1.0",
"chalk": "^5.4.1",
"eventemitter3": "^5.0.1"
},
"devDependencies": {
"@types/node": "^20.11.10",
"tsup": "^8.0.2",
"typedoc": "^0.26.11",
"typedoc-plugin-markdown": "^4.2.10",
"typescript": "^5.4.4",
"vitest": "^2.0.5"
},
"peerDependencies": {
"starknet": "6.23.1"
}
}