-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 798 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 798 Bytes
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
{
"name": "yd-sdk",
"version": "1.3.0",
"description": "Typed isomorphic Yandex Disk SDK",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"build-schema": "npx reqsrv-sdk --ns=YD --error=src/types/entities/Error.ts",
"preversion": "npx npm-run-all shape test",
"shape": "npx codeshape",
"test": "node tests.ts",
"typecheck": "npx codeshape typecheck"
},
"author": "axtk",
"license": "MIT",
"keywords": [
"yandex-disk",
"api",
"typed api",
"sdk",
"typed sdk"
],
"repository": {
"type": "git",
"url": "git+https://github.com/axtk/yd-sdk.git"
},
"devDependencies": {
"@types/node": "^25.5.0"
},
"dependencies": {
"sdkify": "^1.1.2"
}
}