-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 2.96 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
109
110
111
112
{
"name": "activitypub-ucanto",
"version": "0.0.0",
"description": "",
"main": "./lib/index.js",
"bin": "./lib/bin.js",
"type": "module",
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"doc": "npx typedoc src/index.ts --sort visibility --sort static-first --sort alphabetical",
"typedoc": "typedoc src/index.ts",
"test": "NODE_ENV=test mocha",
"tsc": "tsc --declaration",
"build": "run-s lint tsc",
"prepare": "npm run build",
"prettier": "prettier 'src/**/*.ts'",
"eslint": "npx eslint src --ext .js,.jsx,.ts,.tsx",
"eslint:fix": "npm run eslint -- --fix",
"lint": "run-s eslint prettier:check",
"lint:fix": "run-s prettier:fix eslint:fix",
"prettier:check": "npm run prettier -- -c",
"prettier:fix": "npm run prettier -- -w",
"prepublish": "npm run build",
"start": "node --loader ts-node/esm src/index.ts",
"start:demo": "npm run start -- --seed"
},
"directories": {
"lib": "./lib",
"src": "./src",
"test": "./src"
},
"author": "",
"license": "ISC",
"dependencies": {
"@ipld/dag-ucan": "^1.2.4-beta",
"@noble/ed25519": "^1.6.0",
"ajv": "^8.11.0",
"express": "^4.18.1",
"fp-ts": "^2.12.1",
"http-proxy-middleware": "^2.0.6",
"io-ts": "^2.2.16",
"it-all": "^1.0.6",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"multiformats": "^9.6.4",
"typedoc": "^0.23.2",
"typera-koa": "^2.4.4",
"ucanto": "0.1.0-beta",
"uint8arrays": "^3.0.0",
"yargs": "^17.4.1"
},
"files": [
"./bin/*",
"./lib/*"
],
"typings": "./lib/index.d.ts",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/koa": "^2.13.4",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.31",
"@types/uuid": "^8.3.4",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"@web-std/fetch": "^4.1.0",
"conf": "^10.1.2",
"eslint": "^8.14.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^10.0.0",
"npm-run-all": "^4.1.5",
"ora": "^6.1.0",
"prettier": "^2.6.2",
"subprogram": "^1.2.0",
"ts-node": "^10.7.0",
"tslint": "^6.1.3",
"typescript": "^4.6.4",
"uuid": "^8.3.2"
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"plugins": [
"@typescript-eslint",
"prettier"
],
"extends": [
"eslint:recommended",
"plugin:node/recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"@typescript-eslint/no-empty-interface": 0,
"@typescript-eslint/no-floating-promises": 1,
"@typescript-eslint/no-misused-promises": 1,
"@typescript-eslint/no-unused-vars": 0,
"node/no-missing-import": 0,
"no-case-declarations": 0,
"node/shebang": 0
}
},
"engines": {
"node": ">=16.0"
}
}