-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.32 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@irys/query",
"version": "0.0.8",
"description": "Irys query package",
"repository": "https://github.com/Irys-xyz/query",
"author": "JesseTheRobot <[email protected]>",
"license": "MIT",
"main": "./build/cjs/index.js",
"browser": "./build/esm/index.js",
"module": "./build/esm/index.js",
"exports": {
"./node": {
"require": {
"default": "./build/cjs/index.js"
},
"import": {
"default": "./build/esm/index.js"
}
},
"./web": {
"require": {
"default": "./build/cjs/index.js"
},
"import": {
"default": "./build/esm/index.js"
}
},
"./isomorphic/*": {
"require": {
"types": "./build/cjs/*.d.ts",
"default": "./build/cjs/*.js"
},
"import": {
"types": "./build/esm/*.d.ts",
"default": "./build/esm/*.js"
}
},
".": {
"browser": "./build/esm/index.js",
"require": {
"types": "./build/cjs/index.d.ts",
"default": "./build/cjs/index.js"
},
"import": {
"types": "./build/esm/index.d.ts",
"default": "./build/esm/index.js"
}
},
"./*": {
"types": "./*.d.ts",
"default": "./*.js"
}
},
"files": [
"build/**/*"
],
"scripts": {
"build": "rm -rf build && concurrently \" yarn tsc -p cjs.tsconfig.json && resolve-tspaths -p cjs.tsconfig.json && sh ./scripts/fix-pkg.sh cjs commonjs \" \" yarn tsc -p esm.tsconfig.json && resolve-tspaths -p esm.tsconfig.json && sh ./scripts/fix-pkg.sh esm module && yarn tsc-esm-fix --tsconfig esm.tsconfig.json \" "
},
"dependencies": {
"async-retry": "^1.3.3",
"axios": "^1.4.0"
},
"devDependencies": {
"@types/async-retry": "^1.4.5",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"concurrently": "^8.2.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"inspectpack": "^4.7.1",
"prettier": "^2.8.8",
"prettier-eslint": "^16.3.0",
"resolve-tspaths": "^0.8.13",
"ts-node": "^10.9.1",
"tsc-esm-fix": "^2.20.14",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.3",
"webpack": "^5.86.0"
},
"engines": {
"node": ">=16.10.0"
}
}