This repository was archived by the owner on Jun 30, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.54 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.54 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
{
"name": "@stellarbeat/js-stellarbeat-shared",
"version": "6.6.1",
"description": "Shared code between Stellarbeat frontend and backend",
"repository": {
"type": "git",
"url": "https://github.com/stellarbeat/js-stellarbeat-shared.git"
},
"scripts": {
"preversion": "yarn run build",
"prepare": "yarn run build",
"build": "node_modules/typescript/bin/tsc --declaration; yarn compile-schemas",
"compile-schemas": "ajv compile -s \"schemas/*(network).json\" -r \"schemas/*(node|organization).json\" -o lib/network-schema.js -c ajv-formats --code-optimize=true --code-lines; node generate-dto-validate-functions.js",
"test": "jest"
},
"author": "pieterjan84@github",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"files": [
".env.dist",
"README.md",
"lib/**",
"schemas/**",
"LICENSE",
"examples/**"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"dependencies": {
"ajv": "^8.12.0",
"neverthrow": "^6.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"@types/lodash": "^4.14.191",
"@types/node": "^16.18.11",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"ajv-cli": "^5.0.0",
"ajv-formats": "^2.1.1",
"await-fs": "^1.0.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^8.4.0",
"jest": "^29.6.4",
"lodash": "^4.17.21",
"prettier": "^2.5.1",
"ts-jest": "^29.1.1",
"typescript": "^5.4.3",
"typescript-json-schema": "^0.50.0"
},
"packageManager": "yarn@1.22.22+sha256.c17d3797fb9a9115bf375e31bfd30058cac6bc9c3b8807a3d8cb2094794b51ca"
}