-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.15 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "ctan",
"private": true,
"version": "0.1.0",
"author": "@teatimeguest",
"description": "CTAN (Comprehensive TeX Archive Network) API client for Node.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/teatimeguest/node-ctan.git"
},
"bugs": {
"url": "https://github.com/teatimeguest/node-ctan/issues"
},
"homepage": "https://github.com/teatimeguest/node-ctan#readme",
"keywords": [
"api",
"ctan",
"latex",
"tex",
"texlive"
],
"scripts": {
"prebuild": "rm -rf dist",
"build": "ttsc",
"postbuild": "node scripts/build-dist.mjs",
"build-docs": "typedoc --options .config/typedoc.md.cjs",
"build-pages": "typedoc --options .config/typedoc.html.cjs",
"format": "dprint -c .config/dprint.json fmt",
"format-check": "dprint -c .config/dprint.json check && ec",
"lint": "eslint -c .config/eslintrc.yml --ext .ts --quiet src __tests__",
"lint:warn": "eslint -c .config/eslintrc.yml --ext .ts src __tests__",
"openapi:build-docs": "node scripts/widdershins.mjs",
"openapi:lint": "spectral lint -F warn -r .config/spectral.yml openapi/*/*.yml",
"postinstall": "patch-package --patch-dir .config/patches",
"test": "jest -c .config/jest.config.mjs",
"test:coverage": "npm test -- --coverage",
"type-check": "ttsc --noEmit",
"version": "bash scripts/bump-version.sh"
},
"engines": {
"node": ">=14.13.1"
},
"sideEffects": false,
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
},
"./*": {
"import": "./dist/esm/*/index.js",
"require": "./dist/cjs/*/index.js",
"types": "./dist/types/*/index.d.ts"
}
},
"dependencies": {
"ajv": "^8.12.0",
"node-fetch": "^3.3.1",
"tslib": "^2.6.0"
},
"devDependencies": {
"@stoplight/prism-cli": "^5.0.1",
"@stoplight/prism-core": "^5.0.1",
"@stoplight/prism-http-server": "^5.0.1",
"@stoplight/spectral-cli": "^6.8.0",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"dprint": "^0.39.1",
"editorconfig-checker": "^5.1.1",
"esbuild": "^0.18.12",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-tsdoc": "^0.2.17",
"glob": "^8.1.0",
"jest": "^29.6.1",
"patch-package": "^7.0.2",
"ts-jest": "^29.1.1",
"ts-transformer-keys": "^0.4.4",
"ttypescript": "^1.5.13",
"typedoc": "^0.24.8",
"typedoc-plugin-markdown": "3.15.3",
"typescript": "^4.7.4",
"typescript-transform-paths": "3.3.1",
"widdershins": "^4.0.1",
"yaml": "^2.3.1"
},
"overrides": {
"widdershins": {
"markdown-it": "^13.0.1",
"swagger2openapi": "^7.0.8",
"yargs": "^17.5.1"
},
"optionator": "~0.9.3",
"semver": "^7.5.4"
}
}