-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.78 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.78 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
{
"name": "aztec-scan-sdk",
"version": "0.2.0",
"description": "SDK for interacting with Aztec Scan APIs — verify contract artifacts and deployments",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsc",
"build:scripts": "tsc -p tsconfig.scripts.json",
"build:all": "npm run build && npm run build:scripts",
"clean": "rimraf dist dist-scripts",
"lint": "eslint . --ext .ts",
"register-artifact": "NODE_NO_WARNINGS=1 node --loader ts-node/esm scripts/register-artifact.ts",
"verify-deployment": "NODE_NO_WARNINGS=1 node --loader ts-node/esm scripts/verify-deployment.ts",
"deploy-and-verify": "NODE_NO_WARNINGS=1 node --loader ts-node/esm scripts/deploy-and-verify.ts",
"deploy-and-verify::devnet": "NODE_NO_WARNINGS=1 AZTEC_ENV=devnet node --loader ts-node/esm scripts/deploy-and-verify.ts"
},
"keywords": [
"aztec",
"blockchain",
"explorer",
"sdk",
"verification"
],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@aztec/accounts": "4.2.0",
"@aztec/aztec.js": "4.2.0",
"@aztec/constants": "4.2.0",
"@aztec/entrypoints": "4.2.0",
"@aztec/noir-contracts.js": "4.2.0",
"@aztec/protocol-contracts": "4.2.0",
"@aztec/pxe": "4.2.0",
"@aztec/stdlib": "4.2.0",
"@aztec/wallet-sdk": "4.2.0",
"@aztec/wallets": "4.2.0",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/node": "^22.15.1",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"rimraf": "^5.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.4"
}
}