forked from algorandfoundation/algo-fetch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.79 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
{
"name": "algo-fetch",
"private": true,
"type": "module",
"description": "Fetch packages for Algorand Ecosystem",
"workspaces": [
"packages/*",
"docs"
],
"scripts": {
"dev": "vitest --ui --coverage",
"build": "concurrently \"npm:build:*\"",
"build:algod": "npm run -w @awesome-algorand/algod-fetch build",
"build:indexer": "npm run -w @awesome-algorand/indexer-fetch build",
"build:kmd": "npm run -w @awesome-algorand/kmd-fetch build",
"prebuild": "npm run -w @awesome-algorand/core-fetch build",
"docs": "npm run build -w @awesome-algorand/docs-fetch",
"docs:dev": "npm run dev -w @awesome-algorand/docs-fetch",
"clean": "npm run clean -ws --if-present",
"predocs": "npm run build",
"test": "vitest",
"test:ui": "vitest --ui --coverage",
"lint": "npm run lint -ws --if-present",
"lint:fix": "npm run lint:fix -ws --if-present",
"coverage": "vitest --coverage",
"verdaccio": "docker run -it --rm --name verdaccio -p 4873:4873 verdaccio/verdaccio",
"publisher": "node ./bin/publisher.js"
},
"keywords": [
"algorand",
"conduit",
"kmd",
"fetch",
"openapi",
"codegen"
],
"author": "Awesome Algorand",
"license": "Unlicense",
"devDependencies": {
"@hey-api/openapi-ts": "0.50.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"@vitest/coverage-v8": "^2.0.2",
"@vitest/ui": "^2.0.2",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.8.0",
"prettier": "3.3.3",
"rimraf": "^6.0.1",
"tsc-alias": "^1.8.10",
"typedoc": "^0.26.4",
"typescript-eslint": "^7.16.0",
"vite-plugin-doctest": "^1.0.0",
"vitest": "^2.0.2"
}
}