-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.04 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.04 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
{
"name": "@commandlayer/sdk",
"version": "0.1.0",
"private": false,
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"bin": {
"commandlayer": "./dist/cli.cjs"
},
"files": [
"dist"
],
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc -p tsconfig.json --noEmit",
"prepack": "npm run build",
"test:cli-smoke": "node scripts/cli-smoke.mjs",
"test:unit": "npm run build && node scripts/unit-tests.mjs && npm run test:template",
"test": "npm run test:unit && npm run test:cli-smoke",
"test:template": "node scripts/template-tests.mjs"
},
"dependencies": {
"commander": "^12.1.0",
"ethers": "^6.13.4",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"tsup": "^8.2.4",
"typescript": "^5.6.3"
}
}