-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.01 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 3.01 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@toil/neurojs",
"description": "Unoffical library for a short retelling of YouTube videos, articles and texts with Yandex API",
"version": "1.1.3",
"license": "MIT",
"author": "Toil",
"repository": {
"type": "git",
"url": "git+https://github.com/FOSWLY/neurojs",
"directory": "packages/shared"
},
"bugs": {
"url": "https://github.com/FOSWLY/neurojs/issues"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./client": {
"require": "./dist/client.js",
"import": "./dist/client.js",
"types": "./dist/client.d.ts"
},
"./config": {
"require": "./dist/data/config.js",
"import": "./dist/data/config.js",
"types": "./dist/data/config.d.ts"
},
"./types": {
"require": "./dist/types/index.js",
"import": "./dist/types/index.js",
"types": "./dist/types/index.d.ts"
},
"./types/*": {
"require": "./dist/types/*.js",
"import": "./dist/types/*.js",
"types": "./dist/types/*.d.ts"
},
"./protos/*": {
"require": "./dist/protos/*.js",
"import": "./dist/protos/*.js",
"types": "./dist/protos/*.d.ts"
},
"./protobuf": {
"require": "./dist/protobuf.js",
"import": "./dist/protobuf.js",
"types": "./dist/protobuf.d.ts"
},
"./typebox/*": {
"import": "./dist/typebox/*.ts"
}
},
"devDependencies": {
"@eslint/js": "^9.25.1",
"@toil/typebox-genx": "^0.1.0",
"@types/bun": "latest",
"eslint": "^9.25.1",
"eslint-plugin-oxlint": "^1.2.0",
"husky": "^9.1.7",
"oxlint": "^1.2.0",
"prettier": "^3.5.3",
"ts-proto": "^2.7.0",
"tsc-esm-fix": "^3.1.2",
"typedoc": "^0.28.3",
"typedoc-plugin-missing-exports": "^4.0.0",
"typedoc-plugin-rename-defaults": "^0.7.3",
"typescript-eslint": "^8.31.1"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"files": [
"dist"
],
"homepage": "https://github.com/FOSWLY/neurojs#readme",
"keywords": [
"summarize",
"video",
"yandex",
"foswly",
"api",
"neurojs",
"neuro"
],
"peerDependencies": {
"typescript": "^5.7.3"
},
"dependencies": {
"@bufbuild/protobuf": "^2.2.5",
"@vot.js/core": "^2.4.2",
"@vot.js/shared": "^2.4.2"
},
"scripts": {
"build:bun": "bun run ./scripts/build.ts",
"build:skip-proto": "bun run ./scripts/build.ts --skip-proto",
"build:doc": "typedoc --options .config/typedoc.json --tsconfig tsconfig.build.json",
"build:all": "bun build:bun && bun build:doc",
"proto:gen": "protoc --plugin=.\\node_modules\\.bin\\protoc-gen-ts_proto --ts_proto_opt=esModuleInterop=true --ts_proto_opt=importSuffix=.js --ts_proto_out=. ./src/protos/video_summarize.proto",
"lint": "bunx oxlint --ignore-path=.oxlintignore && bunx eslint",
"prepare": "husky"
}
}