-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.84 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.84 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@evvm/evvm-js",
"type": "module",
"version": "0.1.33",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"browser": "./dist/index.browser.mjs",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/types/index.d.ts"
}
},
"browser": {
"./dist/index.mjs": "./dist/index.browser.mjs",
"node:crypto": "crypto-browserify"
},
"files": [
"dist/**/*.cjs",
"dist/**/*.d.ts",
"dist/**/*.mjs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/EVVM-org/evvm-js.git"
},
"license": "EVVM-NONCOMMERCIAL-1.0",
"keywords": [
"evvm",
"blockchain",
"ethereum",
"web3",
"sdk",
"typescript",
"ethers",
"viem",
"eip-191",
"crypto",
"defi"
],
"bugs": {
"url": "https://github.com/EVVM-org/evvm-js/issues"
},
"homepage": "https://github.com/EVVM-org/evvm-js#readme",
"scripts": {
"test": "bun test",
"clean": "rm -rf dist",
"build": "bun run clean && bun run build:types && bun run build:cjs && bun run build:esm && bun run build:browser",
"build:cjs": "bun build src/index.ts --minify --target=node --outfile=dist/index.cjs --format=cjs",
"build:esm": "bun build src/index.ts --minify --target=node --outfile=dist/index.mjs --format=esm",
"build:browser": "bun build src/index.ts --minify --target=browser --outfile=dist/index.browser.mjs --format=esm",
"build:types": "tsc --project tsconfig.types.json && tsc-alias",
"prepublishOnly": "bun run build"
},
"devDependencies": {
"@types/bun": "latest",
"tsc-alias": "^1.8.16"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"crypto-browserify": "^3.12.1",
"ethers": "^6.16.0",
"viem": "2.45.0",
"zod": "^4.3.6"
}
}