This repository has been archived by the owner on Jul 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.17 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
{
"name": "programs",
"version": "0.0.3",
"license": "MIT",
"scripts": {
"build": "nx run-many --target=build",
"clean": "del dist docs",
"format": "nx format --all",
"lint": "nx run-many --target=lint",
"docs": "typedoc && cpy _redirects docs"
},
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/usherlabs/programs.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=16.19.0"
},
"dependencies": {
"@aws-crypto/sha256-js": "^2.0.2",
"@bundlr-network/client": "^0.9.11",
"@ceramicnetwork/http-client": "^2.10.0",
"@glazed/datamodel": "^0.3.1",
"@glazed/did-datastore": "^0.3.2",
"@glazed/types": "^0.2.0",
"@jsdevtools/ono": "^7.1.3",
"@usher.so/campaigns": "link:./dist/packages/campaigns",
"@usher.so/datamodels": "link:./dist/packages/datamodels",
"@usher.so/shared": "link:./dist/packages/shared",
"arweave": "1.11.4",
"bignumber.js": "^9.1.1",
"camelcase-keys": "^8.0.2",
"commander": "^9.4.1",
"dids": "^3.4.0",
"ethers": "5.6.8",
"got": "^12.5.3",
"isomorphic-unfetch": "^3.1.0",
"js-base64": "^3.7.3",
"key-did-provider-ed25519": "^2.0.1",
"key-did-resolver": "^2.3.0",
"ky": "^0.33.1",
"ky-universal": "^0.11.0",
"lodash": "^4.17.21",
"snakecase-keys": "^5.4.4",
"tslib": "^2.3.0",
"uint8arrays": "^4.0.2",
"zod": "^3.20.2"
},
"devDependencies": {
"@nrwl/cli": "15.2.1",
"@nrwl/esbuild": "15.2.1",
"@nrwl/eslint-plugin-nx": "15.2.1",
"@nrwl/jest": "15.2.1",
"@nrwl/js": "15.2.1",
"@nrwl/linter": "15.2.1",
"@nrwl/workspace": "15.2.1",
"@types/jest": "28.1.1",
"@types/lodash": "^4.14.191",
"@types/node": "18.7.1",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"cpy-cli": "^4.2.0",
"del-cli": "^5.0.0",
"esbuild": "^0.15.7",
"eslint": "~8.15.0",
"eslint-config-prettier": "8.1.0",
"jest": "28.1.1",
"jest-environment-jsdom": "28.1.1",
"ngx-deploy-npm": "^4.3.11",
"nx": "^15.6.3",
"prettier": "^2.6.2",
"prettier-plugin-organize-imports": "^3.2.1",
"ts-jest": "28.0.5",
"ts-node": "10.9.1",
"typedoc": "^0.23.23",
"typescript": "~4.8.2"
}
}