-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.09 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "yeast.js",
"version": "1.0.17",
"description": "A library for M-Team API",
"type": "module",
"types": "dist/yeast.d.ts",
"main": "dist/yeast.js",
"exports": {
".": {
"types": "./dist/types/yeast.d.ts",
"import": "./dist/esm/yeast.js",
"require": "./dist/cjs/yeast.js",
"default": "./dist/esm/yeast.js"
}
},
"scripts": {
"lint": "eslint .",
"test": "NODE_NO_WARNINGS=1 node_modules/.bin/mocha --require setup.js",
"clean": "rm -rf ./dist/*",
"build:docs": "node_modules/.bin/typedoc --entryPointStrategy expand ./src",
"build:esm": "tsc --project ./tsconfig-esm.json",
"build:cjs": "tsc --project ./tsconfig-cjs.json",
"build:types": "tsc --project ./tsconfig-types.json",
"build": "pnpm run clean && pnpm run build:esm && pnpm run build:cjs && pnpm run build:types",
"prepare": "husky",
"release": "pnpm run build && pnpm version patch && pnpm publish"
},
"dependencies": {
"bytes": "^3.1.2",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"form-data": "^4.0.0",
"node-fetch": "^3.3.2",
"table": "^6.8.2"
},
"devDependencies": {
"@types/bytes": "^3.1.4",
"@types/chai": "^4.3.14",
"@types/debug": "^4.1.12",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.0",
"@types/node-fetch": "^2.6.11",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"chai": "^5.1.0",
"debug": "^4.3.4",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"mocha": "^10.4.0",
"sinon": "^18.0.0",
"ts-node": "^10.9.2",
"tsx": "^4.7.1",
"typedoc": "^0.26.4",
"typescript": "^5.5.3",
"typescript-eslint": "^7.4.0"
},
"keywords": [],
"files": [
"dist",
"cli",
"README.md",
"LICENSE",
"package.json"
],
"author": "danielsss",
"repository": {
"type": "git",
"url": "https://github.com/yeast-io/yeast.js.git"
},
"bugs": {
"url": "https://github.com/yeast-io/yeast.js/issues"
},
"homepage": "https://github.com/yeast-io/yeast.js#readme",
"license": "MIT"
}