-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.5 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
{
"name": "@vkontakte/api-schema-typescript-generator",
"version": "0.16.0",
"license": "MIT",
"description": "VK API TypeScript generator",
"author": {
"name": "VK",
"url": "https://vk.com"
},
"keywords": [
"VK",
"VK API",
"JSON Schema",
"TypeScript",
"generator"
],
"contributors": [
{
"name": "Igor Fedorov",
"email": "[email protected]",
"url": "https://vk.com/xyz"
}
],
"repository": "https://github.com/VKCOM/api-schema-typescript-generator",
"engines": {
"node": ">=12.0.0",
"yarn": "^1.21.1"
},
"bin": {
"vk-api-schema-typescript-generator": "./bin/vk-api-schema-typescript-generator.js"
},
"scripts": {
"clear": "rimraf dist/*",
"build": "yarn clear && tsc",
"watch": "yarn clear && tsc --watch",
"prettier": "prettier --write \"src/**/*.ts\"",
"test": "jest && tsc --noEmit && eslint src --ext .ts && yarn prettier"
},
"pre-commit": [
"test"
],
"dependencies": {
"arg": "^4.1.3",
"chalk": "4.1.0",
"prettier": "^2.7.1"
},
"devDependencies": {
"@types/jest": "^28.1.5",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@vkontakte/eslint-config": "3.1.0",
"eslint": "8.57.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"jest": "28.1.3",
"pre-commit": "1.2.2",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.6",
"typescript": "^5.1.6"
}
}