-
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": "nobitex",
"version": "0.0.5",
"description": "Nobitex exchange api in typescript",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist",
"!dist/start",
"!dist/test",
"!dist/**/*.test.*"
],
"engines": {
"node": ">= 20.9 < 21"
},
"devDependencies": {
"@types/jest": "~29.5",
"@typescript-eslint/eslint-plugin": "~7.0",
"@typescript-eslint/parser": "~7.0",
"esbuild": "^0.20.0",
"eslint": "~8.56",
"eslint-config-prettier": "~9.1",
"eslint-plugin-jest": "~27.9",
"jest": "~29.7",
"nodemon": "^3.0.3",
"prettier": "~3.2",
"rimraf": "~5.0",
"ts-api-utils": "~1.2",
"ts-jest": "~29.1",
"ts-node": "^10.9.2",
"typescript": "~5.3"
},
"scripts": {
"clean": "rimraf ./dist",
"build": "npm run clean && npm run build-esm; npm run build-cjs; npm run build-types",
"build-esm": "esbuild src/index.ts --bundle --outdir=dist/esm --platform=browser --format=esm --minify --sourcemap",
"build-cjs": "esbuild src/index.ts --bundle --outdir=dist/cjs --platform=node --format=cjs --minify --sourcemap",
"build-types": "tsc --emitDeclarationOnly --declaration --outDir dist/types",
"lint": "eslint --ignore-path .gitignore .",
"fix": "prettier --ignore-path .gitignore --write . ; eslint --fix --ext .ts src",
"test": "jest",
"prepublishOnly": "npm run fix && npm run build"
},
"author": "Sajjad Servatjoo <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/TheServat/nobitex.git"
},
"bugs": {
"url": "https://github.com/TheServat/nobitex/issues"
},
"homepage": "https://github.com/TheServat/nobitex#readme",
"dependencies": {
"axios": "^1.6.7"
}
}