-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.1 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
51
52
53
54
{
"name": "@doiim/tikua",
"version": "0.9.0",
"author": "doiim",
"description": "A Isomorphic JS/TS package to use with any framework on Browser or Terminal for Cartesi dapps.",
"homepage": "https://github.com/doiim/tikua",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/doiim/tikua"
},
"main": "./dist/esm/index.js",
"types": "./dist/index.d.ts",
"module": "./dist/esm/index.js",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"scripts": {
"build": "sh build.sh",
"deploy": "npm run build && npm publish --access public"
},
"license": "Apache-2.0",
"devDependencies": {
"@cartesi/rollups": "^1.4.0",
"@types/node": "^22.4.0",
"typescript": "^5.5.4"
},
"dependencies": {
"@urql/core": "^5.0.6",
"viem": "^2.19.7"
},
"engines": {
"node": ">=18"
},
"keywords": [
"cartesi",
"dapp",
"rollups",
"ethereum",
"viem",
"isomorphic",
"js",
"ts",
"framework",
"browser",
"terminal"
]
}