-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.22 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
{
"name": "starknet-merkle-tree",
"version": "1.0.5",
"description": "To use Merkle trees with Starknet",
"types": "dist/types/index.d.ts",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.mjs",
"default": "./dist/esm/index.mjs"
}
},
"files": [
"dist",
"src",
"!**/*.tsbuildinfo",
"LICENSE",
"README.md"
],
"scripts": {
"compile": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json",
"build:clean": "rm -rf ./dist",
"build": "npm run build:clean && npm run compile && npm run rename:esm",
"rename:esm": "bash ./scripts/fix-mjs.sh",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Philippe ROSTAN",
"repository": "github:PhilippeR26/starknetMerkleTree",
"keywords": [
"merkle",
"starknet",
"tree",
"airdrop"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^22.8.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"dependencies": {
"@starknet-io/types-js": "^0.7.7",
"dotenv": "^16.4.5",
"starknet": "^6.17.0"
}
}