-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.48 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
{
"name": "vot.js",
"version": "2.1.4",
"author": "Toil",
"repository": {
"type": "git",
"url": "git+https://github.com/FOSWLY/vot.js"
},
"devDependencies": {
"@sinclair/typebox-codegen": "^0.10.5",
"@types/bun": "latest",
"@types/eslint__js": "^8.42.3",
"eslint": "^9.17.0",
"eslint-plugin-oxlint": "^0.15.2",
"husky": "^9.1.7",
"oxlint": "^0.15.3",
"typedoc": "^0.27.5",
"typedoc-plugin-include-example": "^2.0.2",
"typedoc-plugin-missing-exports": "^3.1.0",
"typedoc-plugin-rename-defaults": "^0.7.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"bugs": {
"url": "https://github.com/FOSWLY/vot.js/issues"
},
"description": "Unoffical library for interacting with the Yandex VOT API",
"homepage": "https://github.com/FOSWLY/vot.js#readme",
"keywords": [
"voice-over-translation",
"translate",
"vot",
"yandex",
"foswly",
"api",
"vot.js"
],
"license": "MIT",
"private": true,
"scripts": {
"test": "bun test",
"build:bun": "bun run ./scripts/build.ts",
"build:doc": "typedoc --options .config/typedoc.json --tsconfig tsconfig.build.json",
"build:all": "bun build:bun && bun build:doc",
"update:config": "bun run scripts/update-config.ts",
"lint": "bunx oxlint --ignore-path=.oxlintignore && bunx eslint",
"prepare": "husky"
},
"type": "module",
"workspaces": [
"packages/*"
]
}