-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
96 lines (96 loc) · 2.53 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@2bad/bitrix",
"version": "3.0.0-beta.0",
"description": "Bitrix24 REST API client that doesn't suck",
"keywords": [
"api",
"rest",
"client",
"rest-client",
"api-client",
"bx24",
"bitrix",
"bitrix24",
"typescript"
],
"homepage": "https://github.com/2BAD/bitrix#readme",
"bugs": {
"url": "https://github.com/2BAD/bitrix/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/2BAD/bitrix.git"
},
"license": "MIT",
"author": "2BAD (https://github.com/2BAD)",
"type": "module",
"exports": "./build/bitrix.js",
"typings": "./build/bitrix.d.ts",
"files": [
"build"
],
"scripts": {
"prebuild": "rimraf build",
"build": "run-p build:*",
"postbuild": "run-s fix:alias",
"build:swc": "swc ./source -d ./build --strip-leading-paths",
"build:types": "tsc --project tsconfig.build.json",
"check": "run-p check:*",
"check:code": "eslint . --ext .ts --report-unused-disable-directives --max-warnings 0",
"fix:alias": "tsc-alias -p tsconfig.build.json",
"fix:code": "run-s 'check:code -- --fix'",
"prepublishOnly": "run-s build",
"preversion": "run-s check test:unit build",
"test": "vitest run",
"test:integration": "vitest run integration --coverage",
"test:unit": "vitest run unit --coverage"
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"dependencies": {
"@types/lodash.chunk": "4.2.9",
"@types/lodash.frompairs": "4.0.9",
"@types/lodash.range": "3.2.9",
"@types/qs": "6.9.15",
"got": "14.4.1",
"lodash.chunk": "4.2.0",
"lodash.frompairs": "4.0.1",
"lodash.range": "3.2.0",
"p-queue": "8.0.1",
"qs": "6.12.3"
},
"devDependencies": {
"@2bad/tsconfig": "3.0.1",
"@swc/cli": "0.4.0",
"@swc/core": "1.7.0",
"@types/node": "20.14.11",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@vitest/coverage-v8": "2.0.3",
"dotenv": "16.4.5",
"eslint": "7.25.0",
"eslint-config-standard-with-typescript": "20.0.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-n": "14.0.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.1.0",
"nock": "13.5.4",
"npm-run-all2": "6.2.2",
"rimraf": "6.0.1",
"tsc-alias": "1.8.10",
"typescript": "5.5.3",
"vite-tsconfig-paths": "4.3.2",
"vitest": "2.0.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
},
"volta": {
"node": "22.4.1",
"npm": "10.8.2"
}
}