Skip to content

Commit 2d79043

Browse files
committed
fix: json exports
1 parent 53cac41 commit 2d79043

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

contract_manager/package.json

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,23 @@
1111
"./core/*": {
1212
"types": "./lib/core/*.d.ts",
1313
"default": "./lib/core/*.js"
14+
},
15+
"./data/chains/*.json": {
16+
"default": "./store/chains/*.json"
17+
},
18+
"./data/contracts/*.json": {
19+
"default": "./store/contracts/*.json"
20+
},
21+
"./data/tokens/*.json": {
22+
"default": "./store/tokens/*.json"
23+
},
24+
"./data/vaults/*.json": {
25+
"default": "./store/vaults/*.json"
1426
}
1527
},
1628
"files": [
17-
"lib/**/*"
29+
"lib/**/*",
30+
"store/**/*.json"
1831
],
1932
"scripts": {
2033
"build": "tsc",

0 commit comments

Comments
 (0)