-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathpackage.json
68 lines (68 loc) · 1.7 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@permaweb/aoconnect",
"version": "0.0.65",
"repository": {
"type": "git",
"url": "https://github.com/permaweb/ao.git",
"directory": "connect"
},
"sideEffects": false,
"type": "module",
"exports": {
".": {
"webpack": "./dist/browser.js",
"browser": "./dist/browser.js",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./browser": "./dist/browser.js",
"./node": "./dist/index.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"browser": "./dist/browser.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"browser": [
"./dist/index.d.ts"
],
".": [
"./dist/index.d.ts"
]
}
},
"files": [
"./dist"
],
"scripts": {
"build": "npm run build:types && npm run build:src",
"build:src": "node esbuild.js",
"build:types": "tsc src/index.js --skipLibCheck --declaration --allowJs --emitDeclarationOnly --outDir dist",
"test": "node --test ./src/**/*.test.js",
"pretest:integration": "npm run build && npm link",
"test:integration": "cd ./test/e2e && npm test"
},
"dependencies": {
"@permaweb/ao-scheduler-utils": "~0.0.25",
"@permaweb/protocol-tag-utils": "~0.0.2",
"buffer": "^6.0.3",
"debug": "^4.4.0",
"http-message-signatures": "^1.0.4",
"hyper-async": "^1.1.2",
"mnemonist": "^0.39.8",
"ramda": "^0.30.1",
"warp-arbundles": "^1.0.4",
"zod": "^3.24.1"
},
"devDependencies": {
"arweave": "^1.15.5",
"esbuild": "^0.24.2",
"esbuild-plugins-node-modules-polyfill": "^1.6.8",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=18"
}
}