-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.43 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
{
"name": "@onlyoffice/docspace-sdk-js",
"version": "1.1.0",
"description": "Simple integration JavaScript SDK for ONLYOFFICE DocSpace",
"license": "Apache-2.0",
"homepage": "https://www.onlyoffice.com",
"author": "Ascensio System SIA <[email protected]> (https://www.onlyoffice.com)",
"maintainers": [
"Ascensio System SIA <[email protected]> (https://www.onlyoffice.com)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ONLYOFFICE/docspace-sdk-js.git"
},
"bugs": {
"url": "https://github.com/ONLYOFFICE/docspace-sdk-js"
},
"keywords": [
"onlyoffice",
"docspace",
"sdk",
"js-sdk"
],
"main": "./dist/cjs/main.js",
"module": "./dist/esm/main.js",
"types": "./dist/types/main.d.ts",
"scripts": {
"lint": "eslint src/",
"test": "jest",
"docs": "typedoc --entryPoints src/index.ts --json docs/docspace-sdk-js.json",
"build": "ts-node tools/build.mjs"
},
"engines": {
"node": ">=20",
"pnpm": ">=8"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/jest": "^29.5.13",
"@types/node": "^22.5.5",
"esbuild": "^0.24.0",
"esbuild-plugin-tsc": "^0.4.0",
"eslint": "^9.15.0",
"jest": "29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.8.0",
"typedoc": "^0.27.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.14.0"
}
}