-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.1 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.1 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
{
"name": "@lad-tech/nsc-cli",
"version": "2.0.0",
"type": "module",
"description": "",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "rm -rf dist/ && tsc && chmod +x dist/cli/service-cli.js",
"test": "echo \"Error: no test specified\" && exit 1",
"create-service": "tsx src/cli/service-cli.ts --schema fakeServicesDirectory/testService2/service.schema.json",
"semantic-release": "semantic-release"
},
"bin": {
"nsc-cli": "/dist/cli/service-cli.js"
},
"peerDependencies": {
"@lad-tech/nsc-toolkit": "^2.0.4",
"prettier": "^3.0.0"
},
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/npm": "^13.1.3",
"@types/gitignore-parser": "^0.0.3",
"@types/node": "^24.0.0",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.5.5",
"fastify": "^5.7.1",
"lefthook": "^2.0.15",
"prettier": "^3.8.1",
"prettier-eslint": "^16.4.2",
"semantic-release": "^25.0.2",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.9.3"
},
"dependencies": {
"@lad-tech/toolbelt": "^1.1.2",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"commander": "^12.1.0",
"gitignore-parser": "^0.0.2",
"json-schema-to-typescript": "^15.0.4",
"reflect-metadata": "^0.2.2",
"ts-morph": "^27.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/lad-tech/nsc-cli.git"
},
"author": "DevHive crew",
"license": "MIT",
"keywords": [
"@lad-tech/nsc-toolkit",
"nsc-toolkit",
"cli",
"nats",
"service",
"generator"
],
"bugs": {
"url": "https://github.com/lad-tech/nsc-cli/issues"
},
"homepage": "https://github.com/lad-tech/nsc-cli#readme"
}