-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.3 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.3 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
{
"name": "mastodon-openapi",
"version": "1.0.0",
"description": "Mastodon OpenAPI package",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"start": "npx @redocly/cli preview-docs dist/schema.json",
"dev": "ts-node src/index.ts",
"generate": "ts-node src/generate.ts",
"validate": "redocly lint --format=github-actions dist/schema.json",
"test": "jest",
"test:watch": "jest --watch",
"clean": "rm -rf dist",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"postinstall": "ts-node scripts/setup-docs.ts",
"update-docs": "ts-node scripts/update-docs.ts"
},
"keywords": [
"mastodon",
"openapi",
"typescript"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@redocly/cli": "^2.18.2",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.3.0",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.55.0",
"eslint": "^10.0.1",
"eslint-config-prettier": "^10.1.8",
"jest": "^30.2.0",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.0",
"typescript": "^5.9.3"
},
"dependencies": {
"gray-matter": "^4.0.3"
}
}