-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.61 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "wao",
"version": "0.41.3",
"bin": "./src/cli.js",
"type": "module",
"main": "dist/cjs/index.js",
"module": "dist/src/index.js",
"types": "./types/index.d.ts",
"scripts": {
"postinstall": "patch-package",
"build:cjs": "babel src --out-dir dist/cjs --config-file ./.babelrc-cjs --ignore 'src/workspace' && cp src/waosm-node/waosm_bg.wasm dist/cjs/waosm-node/ && cp -rf src/workspace dist/cjs/",
"build": "rm -rf dist && npm run build:cjs && cp src -rf dist/esm && node make.js && cp .npmignore dist/ && cp src/lua/* dist/cjs/lua -rf && rm -rf dist/esm/workspace && cp -rf src/workspace dist/esm/",
"test": "bash scripts/node-test.sh",
"test-only": "bash scripts/node-test.sh --test-only",
"test-all": "bash scripts/node-test.sh test/**/*.test.js",
"test-clean": "bash scripts/clean-test-state.sh",
"server": "node cli-esm.js",
"keygen": "node src/keygen.js"
},
"exports": {
".": {
"require": "./cjs/index.js",
"import": "./esm/index.js"
},
"./utils": {
"require": "./cjs/utils.js",
"import": "./esm/utils.js"
},
"./test": {
"require": "./cjs/test.js",
"import": "./esm/test.js"
},
"./web": {
"require": "./cjs/web.js",
"import": "./esm/web.js"
},
"./cf": {
"require": "./cjs/cf.js",
"import": "./esm/cf.js"
},
"./signer": {
"require": "./cjs/signer.js",
"import": "./esm/signer.js"
}
},
"dependencies": {
"@ar.io/sdk": "^3.20.0",
"@ardrive/turbo-sdk": "^1.31.1",
"@bokuweb/zstd-wasm": "^0.0.22",
"@dha-team/arbundles": "^1.0.4",
"@permaweb/ao-loader": "^0.0.44",
"@permaweb/aoconnect": "^0.0.85",
"@permaweb/aoconnect-69": "npm:@permaweb/aoconnect@0.0.69",
"arbundles": "^0.11.1",
"arjson": "^0.0.2",
"arweave": "^1.15.1",
"base64url": "^3.0.1",
"body-parser": "^2.2.0",
"buffer": "^6.0.3",
"chokidar": "^4.0.3",
"cors": "^2.8.5",
"dotenv": "^17.2.0",
"express": "^5.1.0",
"fast-sha256": "^1.3.0",
"graphql": "^16.10.0",
"hbsig": "^0.3.0",
"http-message-signatures": "^1.0.4",
"lmdb": "^3.2.2",
"localforage": "^1.10.0",
"lz4-asm": "^0.4.2",
"md5": "^2.3.0",
"pm2": "^5.4.3",
"ramda": "^0.30.1",
"structured-headers": "1.0.1",
"warp-arbundles": "^1.0.4",
"wasm-brotli": "^2.0.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/plugin-transform-modules-commonjs": "^7.24.8",
"@babel/preset-env": "^7.25.3",
"patch-package": "^8.0.1",
"postinstall-postinstall": "^2.1.0"
}
}