-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
108 lines (108 loc) · 2.64 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "arweavekit",
"version": "1.5.1",
"description": "Utility library to build full stack permaweb applications",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist/"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"tsc": "tsc -p tsconfig.json",
"rollup:build": "rm -rf ./dist && npx rollup -c",
"build": "rimraf ./dist && yarn tsc && tsc-esm-fix --tsconfig tsconfig.json && tsx scripts/embedVersion.ts",
"prepack": "yarn build",
"test": "jest --config jestconfig.json",
"lint": "tslint -p tsconfig.json",
"format": "prettier --write src/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/labscommunity/arweavekit.git"
},
"author": "CommunityLabs",
"license": "MIT",
"bugs": {
"url": "https://github.com/labscommunity/arweavekit/issues"
},
"homepage": "https://github.com/labscommunity/arweavekit#readme",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.1",
"@rollup/plugin-typescript": "^11.1.1",
"@types/bn.js": "^5.1.1",
"@types/jest": "^29.4.0",
"@types/node-fetch": "^2.6.2",
"arlocal": "^1.1.61",
"babel-jest": "^29.5.0",
"dotenv": "^16.0.3",
"jest": "^29.4.2",
"prettier": "^2.8.4",
"rimraf": "^5.0.1",
"ts-jest": "^29.0.5",
"tsc-esm-fix": "^2.20.17",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tsx": "^3.12.10",
"typescript": "^4.9.5"
},
"dependencies": {
"@bundlr-network/client": "^0.11.12",
"@metamask/providers": "^11.1.0",
"arweave": "^1.13.5",
"arweave-mnemonic-keys": "^0.0.9",
"ethers": "^6.6.7",
"graphql": "^16.7.1",
"othent": "1.0.638",
"warp-contracts": "^1.4.17",
"warp-contracts-plugin-deploy": "^1.0.9"
},
"exports": {
".": {
"import": "./dist/index.js"
},
"./auth": {
"import": "./dist/lib/auth.js"
},
"./contract": {
"import": "./dist/lib/contract.js"
},
"./encryption": {
"import": "./dist/lib/encryption.js"
},
"./transaction": {
"import": "./dist/lib/transaction.js"
},
"./wallet": {
"import": "./dist/lib/wallet.js"
},
"./graphql": {
"import": "./dist/lib/graphql.js"
}
},
"typesVersions": {
"*": {
"auth": [
"dist/lib/auth.d.ts"
],
"wallet": [
"dist/lib/wallet.d.ts"
],
"transaction": [
"dist/lib/transaction.d.ts"
],
"contract": [
"dist/lib/contract.d.ts"
],
"encryption": [
"dist/lib/encryption.d.ts"
],
"graphql": [
"dist/lib/graphql.d.ts"
]
}
}
}