This repository was archived by the owner on Feb 26, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.61 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.61 KB
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
{
"name": "fair-tools",
"version": "0.8.1",
"description": "Tools for the FAIR protocol",
"type": "module",
"engines": {
"node": ">=18"
},
"repository": {
"url": "https://github.com/johnbillion/fair-tools"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"fair-tools": "./dist/src/cli/fair-tools.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"!dist/**/*.map"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "tsc --noEmit && node --import tsx --test --test-reporter spec --experimental-test-coverage test/*.test.ts test/cli/*.test.ts",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"license-check": "jq -r '.packages | to_entries[] | select(.value.dev | not) | select(.value.license | IN(\"MIT\",\"Apache-2.0\",\"ISC\",\"BSD-3-Clause\",\"BSD-2-Clause\",\"(Apache-2.0 AND MIT)\") | not) | \"\\(.key): \\(.value.license)\"' package-lock.json | grep . && exit 1 || exit 0",
"fair-tools": "tsx src/cli/fair-tools.ts"
},
"keywords": [
"fair"
],
"license": "MIT",
"dependencies": {
"@atproto/crypto": "^0.4.5",
"@did-plc/lib": "^0.0.4",
"@noble/curves": "^1.9.7",
"image-size": "^2.0.2",
"marked": "^15.0.12",
"multiformats": "^9.9.0",
"uint8arrays": "3.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^22.0.0",
"eslint": "^9.39.2",
"prettier": "^3.7.4",
"tsx": "^4.19.0",
"typescript": "^5.9.0",
"typescript-eslint": "^8.0.0"
},
"overrides": {
"@did-plc/lib": {
"@atproto/crypto": "0.4.5"
}
}
}