-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.03 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
{
"name": "aleo-address-derivation",
"version": "0.1.2",
"description": "Aleo address derivation from signature",
"main": "dist/js/index.js",
"types": "dist/js/index.d.ts",
"scripts": {
"test": "node test.js",
"build": "wasm-pack build --target nodejs && tsc && cp -r pkg dist/",
"prepublishOnly": "npm run build"
},
"keywords": [
"aleo",
"address",
"derivation",
"wasm"
],
"author": "hoodrunio",
"repository": {
"type": "git",
"url": "https://github.com/hoodrunio/aleo-address-derivation.git"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^22.7.4",
"tsconfig-paths": "^4.2.0",
"typescript": "5.6.2",
"wasm-pack": "^0.10.3"
},
"files": [
"dist/**/*",
"pkg/aleo_address_derivation.js",
"pkg/aleo_address_derivation_bg.wasm",
"pkg/aleo_address_derivation.d.ts",
"pkg/aleo_address_derivation_bg.wasm.d.ts",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"tsconfig-paths": "^4.2.0"
}
}