forked from ng-openapi/ng-openapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.77 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.77 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
{
"name": "@ng-openapi-workspace/source",
"version": "0.0.0",
"license": "MIT",
"type": "module",
"scripts": {
"build:ng-openapi": "nx build ng-openapi",
"build:http-resource": "nx build http-resource",
"build:zod": "nx build zod",
"build": "npm run build:ng-openapi && npm run build:http-resource && npm run build:zod",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"// Publishing scripts": "",
"publish:prepare": "npm run build:ng-openapi && npm run publish:check",
"publish:check": "cd dist/packages/ng-openapi && npm pack --dry-run",
"publish:local": "npm run publish:prepare && cd dist/packages/ng-openapi && npm publish --registry http://localhost:4873",
"publish:beta": "npm run publish:prepare && cd dist/packages/ng-openapi && npm publish --tag beta",
"publish:stable": "npm run publish:prepare && cd dist/packages/ng-openapi && npm publish",
"// Version management": "",
"version:patch": "cd packages/ng-openapi && npm version patch",
"version:minor": "cd packages/ng-openapi && npm version minor",
"version:major": "cd packages/ng-openapi && npm version major",
"version:beta": "cd packages/ng-openapi && npm version prerelease --preid=beta",
"version:alpha": "cd packages/ng-openapi && npm version prerelease --preid=alpha",
"// Release workflow": "",
"release:patch": "npm run version:patch && npm run publish:stable",
"release:minor": "npm run version:minor && npm run publish:stable",
"release:major": "npm run version:major && npm run publish:stable",
"release:beta": "npm run version:beta && npm run publish:beta",
"release:alpha": "npm run version:alpha && npm run publish:beta",
"// Testing and validation": "",
"test:install": "npm pack dist/packages/ng-openapi && npm install -g ng-openapi-*.tgz",
"test:uninstall": "npm uninstall -g ng-openapi && rm -f ng-openapi-*.tgz",
"validate:package": "cd dist/packages/ng-openapi && npm pack && tar -tzf *.tgz"
},
"private": true,
"devDependencies": {
"@eslint/js": "^9.8.0",
"@nx/eslint": "21.2.3",
"@nx/eslint-plugin": "21.2.3",
"@nx/js": "21.2.3",
"@swc-node/register": "~1.9.1",
"@swc/cli": "~0.6.0",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@types/js-yaml": "^4.0.9",
"@types/node": "18.16.9",
"eslint": "^9.8.0",
"eslint-config-prettier": "^10.0.0",
"jsonc-eslint-parser": "^2.1.0",
"nx": "21.2.3",
"prettier": "^2.6.2",
"swc-loader": "0.1.15",
"tslib": "^2.3.0",
"tsup": "^8.5.0",
"typescript": "~5.8.2",
"typescript-eslint": "^8.29.0",
"verdaccio": "^6.0.5",
"vitepress": "^1.6.3"
},
"workspaces": [
"packages/*"
],
"nx": {
"includedScripts": []
}
}