-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.63 KB
/
package.json
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@allanoricil/nrg-cli",
"version": "2.2.2",
"description": "A very simple CLI for building an nrg project",
"license": "MIT",
"publishConfig": {
"access": "public",
"provenance": true
},
"type": "module",
"main": "index.js",
"bin": {
"nrg": "./dist/index.js"
},
"engines": {
"node": ">=18",
"npm": ">=10"
},
"author": {
"name": "AllanOricil",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/AllanOricil/nrg-cli"
},
"bugs": {
"url": "https://github.com/AllanOricil/nrg-cli/issues"
},
"homepage": "https://github.com/AllanOricil/nrg-cli#readme",
"keywords": [
"node-red",
"nrg",
"cli"
],
"scripts": {
"build": "rollup -c rollup.config.js",
"release": "semantic-release",
"test": "vitest --run",
"test:watch": "vitest --watch",
"test:coverage": "vitest run --coverage",
"lint": "eslint '**/*.ts'",
"lint:fix": "eslint --fix '**/*.ts'",
"format": "prettier '**/*.{json,ts}'",
"format:fix": "prettier --write '**/*.{json,ts}'",
"postinstall": "node ./dist/postinstall.js",
"prepare": "husky",
"prepublishOnly": "npm run build"
},
"overrides": {
"node-plop": {
"inquirer": "9.3.5"
}
},
"dependencies": {
"@allanoricil/nrg-core": "^1.5.2",
"@allanoricil/nrg-generator": "^1.3.1",
"@sentry/node": "^8.32.0",
"@sentry/profiling-node": "^8.32.0",
"chalk": "^5.3.0",
"global-modules": "^2.0.0",
"machine-uuid": "^1.2.0",
"node-plop": "^0.32.0",
"pkg-dir": "^8.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.9.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@types/eslint__js": "^8.42.3",
"@types/global-modules": "^2.0.2",
"@types/node": "^22.5.3",
"@types/yargs": "^17.0.33",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.9.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.0",
"prettier": "^3.3.3",
"rollup": "^4.22.5",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-typescript2": "^0.36.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0",
"vitest": "^2.0.5"
},
"lint-staged": {
"*.{ts, json}": [
"prettier --write"
],
"*.ts": [
"eslint --fix"
]
}
}