-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.5 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
{
"name": "@artbycity/sdk",
"version": "0.1.12",
"description": "Art By City JavaScript SDK",
"license": "AGPL-3.0-only",
"contributors": [
{
"name": "Jim Toth",
"email": "[email protected]"
}
],
"homepage": "https://github.com/art-by-city/sdk",
"repository": {
"type": "git",
"url": "https://github.com/art-by-city/sdk"
},
"bugs": {
"url": "https://github.com/art-by-city/sdk/issues"
},
"keywords": [
"arweave",
"artbycity",
"sdk",
"art-by-city",
"permaweb",
"publishing",
"art",
"curation"
],
"engines": {
"node": "~18.19.0"
},
"main": "./dist/node/index.js",
"browser": "./dist/web/index.js",
"files": [
"dist"
],
"scripts": {
"arlocal": "arlocal --hidelogs --persist --dbpath .db",
"build": "rimraf dist && npm run build:node && npm run build:web",
"build:node": "rimraf dist/node && tsc --project tsconfig.node.json",
"build:web": "rimraf dist/web && tsc --project tsconfig.web.json",
"bundle:tests": "rimraf bundles && webpack --config-name web-tests",
"lint": "eslint .",
"preversion": "npm run test && npm run lint",
"version": "npm run build",
"postversion": "git push --tags",
"test": "mocha -r ts-node/register test/spec/*.ts test/spec/**/*.ts",
"test:e2e": "npm run build && mocha -r ts-node/register test/e2e/*.ts test/e2e/**/*.ts",
"test:e2e:web": "npm run build:web && npm run bundle:tests && http-server"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^10.0.1",
"@types/sinon": "^10.0.16",
"@types/sinon-chai": "^3.2.9",
"@types/uuid": "^9.0.6",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"arconnect": "1.0.3",
"arlocal": "^1.1.62",
"chai": "^4.3.8",
"chai-as-promised": "^7.1.1",
"eslint": "^8.47.0",
"http-server": "^14.1.1",
"mocha": "^10.2.0",
"opener": "^1.5.2",
"rimraf": "^5.0.1",
"selenium-webdriver": "^4.11.1",
"sinon": "^16.1.1",
"sinon-chai": "^3.7.0",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"arbundles": "^0.10.0",
"ardb": "^1.1.10",
"arweave": "^1.14.4",
"axios": "^1.6.0",
"buffer": "^6.0.3",
"uuid": "^9.0.1",
"warp-contracts": "1.4.36",
"warp-contracts-plugin-deploy": "1.0.13"
},
"overrides": {
"arconnect": "1.0.3"
}
}