-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.11 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "verkle-cryptography-wasm",
"version": "0.4.8",
"description": "Verkle Trie Crytography WASM/TypeScript Bindings",
"keywords": [
"ethereum",
"verkle",
"WASM",
"JavaScript",
"TypeScript"
],
"homepage": "https://github.com/ethereumjs/verkle-cryptography-wasm",
"bugs": {
"url": "https://github.com/ethereumjs/verkle-cryptography-wasm/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ethereumjs/verkle-cryptography-wasm.git"
},
"license": "MIT/Apache",
"author": "Kevaundray Wedderburn",
"contributors": [
"EthereumJS Team"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"dist",
"src.ts/**/*.ts"
],
"scripts": {
"build": "./scripts/rust-build.sh && ./scripts/ts-build.sh",
"clean": "rm -rf node_modules dist",
"lint": "eslint .",
"lint:fix": "eslint --fix --config ./.eslintrc.js . --ext .js,.jsx,.ts,.tsx",
"prepare": "npm run build",
"test": "npx vitest run",
"test:browser": "npx vitest run --config=vitest.config.browser.ts --browser.name=webkit --browser.provider=playwright --browser.headless",
"wasmToB64": "node ./scripts/wasmToB64.js"
},
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@ethereumjs/util": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"@vitest/browser": "^2.0.5",
"babel-plugin-transform-import-meta": "^2.2.1",
"eslint": "^8.50.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"eventemitter3": "^5.0.1",
"playwright": "^1.42.1",
"prettier": "3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"vite-plugin-wasm": "^3.3.0",
"vitest": "^2.0.5"
},
"engines": {
"node": ">=18",
"npm": ">=7"
},
"dependencies": {
"@scure/base": "^1.1.5"
}
}