-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.51 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
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
{
"name": "eligius",
"author": "Roland Zwaga <rbzwaga@gmail.com>",
"version": "1.1.4",
"license": "MIT",
"homepage": "https://rolandzwaga.github.io/eligius/",
"bugs": {
"url": "https://github.com/rolandzwaga/eligius/issues?q=is%3Aissue+is%3Aopen+label%3ABug"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.js"
},
"./metadata": {
"types": "./dist/operation/metadata/types.d.ts"
}
},
"typesVersions": {
"*": {
"*": [
"dist/*"
]
}
},
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"typecheck": "tsc --pretty --noEmit",
"test": "cross-env TS_NODE_PROJECT=tsconfig.test.json uvu -r ts-node/register -r jsdom-global/register src/test",
"test:watch": "watchlist src test -- yarn test",
"prepare": "yarn build",
"generate-readmes": "ts-node ./src/tools/doc-tools/generate-readmes",
"generate-schema": "ts-node ./src/tools/schema-tools/generate-operation-schemas",
"typedoc": "typedoc --options typedoc-metadata.json & typedoc --options typedoc.json",
"docs": "yarn generate-schema && yarn typedoc && node copy-schema && yarn generate-readmes",
"ts-types": " tsc --emitDeclarationOnly --outDir dist",
"build": "rimraf dist && node ./esbuild.js & npm run ts-types"
},
"devDependencies": {
"@ts-morph/bootstrap": "0.21.0",
"@types/chai": "4.3.9",
"@types/fs-extra": "11.0.3",
"@types/jquery": "3.5.25",
"@types/jsdom": "21.1.4",
"@types/node": "20.8.10",
"@types/sinon": "17.0.0",
"@types/uuid": "9.0.6",
"canvas": "2.11.2",
"chai": "4.3.10",
"cross-env": "7.0.3",
"esbuild": "0.19.5",
"fs-extra": "11.1.1",
"jquery": "3.7.0",
"jsdom": "22.1.0",
"jsdom-global": "3.0.2",
"lottie-web": "5.12.2",
"rimraf": "5.0.1",
"sinon": "17.0.1",
"ts-morph": "20.0.0",
"ts-node": "10.9.1",
"tsconfig-paths": "4.2.0",
"tslib": "2.6.2",
"typedoc": "0.25.3",
"typedoc-plugin-missing-exports": "2.1.0",
"typescript": "5.2.2",
"uuid": "9.0.1",
"uvu": "0.5.6",
"video.js": "8.6.1",
"watchlist": "0.3.1"
},
"peerDependencies": {
"jquery": "3.7.1",
"lottie-web": "5.11.0",
"uuid": "9.0.0",
"video.js": "7.21.0"
},
"dependencies": {
"hotkeys-js": "3.12.0",
"ts-is-present": "1.2.2"
},
"packageManager": "yarn@3.5.0"
}