-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.26 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
{
"name": "@latticexyz/noise",
"version": "2.0.0-next.17",
"license": "MIT",
"type": "module",
"exports": {
".": "./dist/index.js"
},
"types": "ts/index.ts",
"scripts": {
"build": "pnpm run build:wasm && pnpm run build:js",
"build:js": "tsup",
"build:wasm": "asc assembly/index.ts --target release",
"clean": "pnpm run clean:wasm && pnpm run clean:js",
"clean:js": "rimraf dist",
"clean:wasm": "rimraf build",
"dev": "tsup --watch",
"start": "npx serve .",
"test": "forge test && tsc --noEmit",
"test:ci": "pnpm run test"
},
"dependencies": {
"abdk-libraries-solidity": "^3.0.0",
"ds-test": "https://github.com/dapphub/ds-test.git#e282159d5170298eb2455a6c05280ab5a73a4ef0",
"forge-std": "https://github.com/foundry-rs/forge-std.git#74cfb77e308dd188d2f58864aaf44963ae6b88b1"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.3",
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@types/chai": "^4.3.5",
"@types/node-fetch": "^2.6.2",
"assemblyscript": "^0.21.2",
"chai": "^4.3.6",
"ethers": "^5.7.2",
"hardhat": "^2.10.2",
"keccak-wasm": "^0.10.3",
"tsup": "^6.7.0",
"web3-utils": "^1.8.0"
},
"gitHead": "914a1e0ae4a573d685841ca2ea921435057deb8f"
}