-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.13 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
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
{
"name": "@massivescale/tsp-api-docs",
"version": "1.0.0-beta3",
"description": "TypeSpec emitter for generating API reference documentation in Markdown for Azure DevOps Wiki, GitHub, and DocFx.",
"type": "module",
"main": "dist/src/index.js",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.js"
}
},
"files": [
"dist/src/",
"templates/",
"readme.md",
"CHANGELOG.md",
"LICENSE"
],
"keywords": [
"typespec",
"emitter",
"api",
"documentation",
"markdown",
"azure-devops",
"github",
"docfx"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MassiveScale/tsp-api-docs.git"
},
"bugs": {
"url": "https://github.com/MassiveScale/tsp-api-docs/issues"
},
"homepage": "https://github.com/MassiveScale/tsp-api-docs#readme",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22.0.0"
},
"peerDependencies": {
"@typespec/compiler": "^1.15.0",
"@typespec/http": "^1.15.0",
"@typespec/openapi": "^1.15.0",
"@typespec/versioning": "^0.85.0"
},
"devDependencies": {
"@types/node": "^26.2.0",
"@typespec/compiler": "^1.15.0",
"@typespec/http": "^1.15.0",
"@typespec/openapi": "^1.15.0",
"@typespec/versioning": "^0.85.0",
"eslint": "^9.39.4",
"handlebars": "^4.7.9",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.60.1"
},
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"watch": "tsc --watch",
"test": "npm run build && node --test test/**/*.test.js",
"lint": "eslint src/ test/ --report-unused-disable-directives --max-warnings=0",
"lint:fix": "eslint . --report-unused-disable-directives --fix",
"format": "prettier . --write",
"format:check": "prettier --check ."
},
"packageManager": "npm@11.14.1+sha512.6a8a4d67478497a2dbc6815cad72e64c43f33413717e242756047d466241ab39bee61e691683a64658e94496ec5f1a1c05e4a5ec62dcc773280dfd949443a367",
"dependencies": {
"markdown-table-formatter": "^1.7.0",
"markdown-table-prettify": "^4.1.0"
}
}