forked from bluesky-social/atproto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.07 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
{
"name": "@adx/common",
"version": "0.0.1",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc --project tsconfig.json",
"dev": "tsc -w --project tsconfig.json",
"test": "ava -v test/*.ts",
"lint": "eslint --ext .ts ."
},
"license": "MIT",
"dependencies": {
"@ipld/car": "^3.2.3",
"@ipld/dag-cbor": "^7.0.0",
"axios": "^0.24.0",
"ipld-hashmap": "^2.1.10",
"level": "^7.0.1",
"multiformats": "^9.6.4",
"ucans": "0.9.0-alpha3",
"uint8arrays": "^3.0.0"
},
"devDependencies": {
"@types/level": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"ava": "^3.15.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
},
"ava": {
"extensions": {
"ts": "module"
},
"nonSemVerExperiments": {
"configurableModuleFormat": true
},
"nodeArguments": [
"--loader=ts-node/esm"
]
}
}