-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.3 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
{
"name": "gravatic-booster",
"version": "3.1.0",
"main": "./dist/gravatic-booster.js",
"module": "./dist/gravatic-booster.mjs",
"types": "./dist/gravatic-booster.d.ts",
"scripts": {
"cli": "npx ts-node -r tsconfig-paths/register bin/cli.ts",
"check": "tsc && npm run lint",
"build": "rollup -c",
"lint": "eslint src --ext .ts",
"format": "prettier . --write",
"docs": "typedoc src/index.ts"
},
"devDependencies": {
"@types/cli-progress": "^3.11.0",
"@types/node": "^18.15.5",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"cli-progress": "^3.12.0",
"commander": "^10.0.0",
"esbuild": "^0.17.19",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.6",
"rollup": "^3.23.0",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-polyfill-node": "^0.12.0",
"rollup-plugin-tsconfig-paths": "^1.5.0",
"scr-api-node-providers": "^1.0.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typedoc": "^0.24.7",
"typescript": "^5.0.4"
},
"dependencies": {
"bw-web-api": "^3.0.2",
"lru-cache": "^8.0.4",
"tslog": "^4.8.2",
"typescript-retry-decorator": "^2.2.0"
}
}