-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.6 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
{
"name": "omg",
"version": "1.2.0",
"private": true,
"description": "OpenAPI Markdown Grammar (OMG) - A human-first domain-specific language for API specification",
"author": "mcclowes",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mcclowes/omg.git"
},
"bugs": {
"url": "https://github.com/mcclowes/omg/issues"
},
"homepage": "https://github.com/mcclowes/omg#readme",
"keywords": [
"openapi",
"api",
"specification",
"dsl",
"markdown",
"api-design",
"api-documentation",
"openapi3",
"swagger",
"rest-api"
],
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build -w omg-parser && npm run build -w omg-compiler && npm run build -w omg-linter && npm run build -w omg-importer && npm run build -w omg-mock-server && npm run build -w omg-test && npm run build -w omg-lsp && npm run build -w omg-md-cli",
"test": "npm run test --workspaces",
"typecheck": "npm run typecheck --workspaces",
"prepare": "husky install",
"docs:dev": "npm run start --prefix docusaurus",
"docs:build": "npm run build --prefix docusaurus",
"docs:serve": "npm run serve --prefix docusaurus",
"publish:all": "npm publish --workspaces",
"changeset": "changeset",
"version-packages": "changeset version && npm install --package-lock-only --ignore-scripts",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.31.1",
"husky": "^9.1.7",
"prettier": "^3.8.3"
}
}