forked from permaweb/ao
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) Β· 2.33 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) Β· 2.33 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
88
89
90
91
{
"name": "@permaweb/aoconnect",
"version": "0.0.55",
"repository": {
"type": "git",
"url": "https://github.com/scottroot/aoconnect.git"
},
"type": "module",
"sideEffects": false,
"exports": {
".": {
"browser": "./dist/browser.js",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./browser": "./dist/browser.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"browser": {
"./dist/index.js": "./dist/browser.js",
"crypto": "crypto-browserify",
"path": "path-browserify",
"buffer": "buffer/"
},
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"browser": [
"./dist/index.d.ts"
],
".": [
"./dist/index.d.ts"
]
}
},
"files": [
"./dist"
],
"scripts": {
"clean": "rm -rf dist && clear",
"test": "node --test ./tests/connect.test.js",
"lint:check": "eslint src/**",
"lint:fix": "eslint src/** --fix",
"esbuild": "node esbuild.js",
"build": "npm-run-all clean esbuild",
"example": "cd examples/next && npm run dev"
},
"dependencies": {
"@permaweb/ao-scheduler-utils": "~0.0.16",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"debug": "4.3.5",
"esm": "^3.2.25",
"mnemonist": "^0.39.8",
"path-browserify": "^1.0.1",
"stream-browserify": "^3.0.0",
"warp-arbundles": "^1.0.4",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/node": "^18.19.34",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"arconnect": "^0.4.2",
"arweave": "^1.14.4",
"assert": "^2.0.0",
"buffer": "^6.0.3",
"esbuild": "^0.21.5",
"esbuild-plugin-tsc": "^0.4.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.4.0",
"npm-run-all": "^4.1.5",
"schema-utils": "^4.2.0",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.5",
"webpack": "=5.76.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "=5.8.0",
"webpack-node-externals": "=3.0.0"
},
"engines": {
"node": ">=18",
"yarn": "please-use-npm"
}
}