-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.7 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.7 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"version": "1.4.0",
"name": "modular-cli-menu",
"description": "",
"keywords": [
"nodejs",
"cli",
"modular",
"command-line",
"menu",
"inquirer ",
"terminal"
],
"author": "Loris Salvi",
"license": "MIT",
"homepage": "https://github.com/BlorisL/modular-cli-menu/blob/main/README.md",
"repository": {
"type": "git",
"url": "https://github.com/blorisl/modular-cli-menu.git"
},
"dependencies": {
"@inquirer/checkbox": "^4.1.6",
"@inquirer/input": "^4.1.10",
"@inquirer/select": "^4.2.1",
"@types/inquirer": "^9.0.7",
"chalk": "^5.4.1",
"dotenv": "^16.4.5",
"inquirer": "^9.2.12"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@types/node": "^20.9.0",
"clean-pkg-json": "^1.3.0",
"pkgroll": "^2.12.2",
"semantic-release": "^24.2.4",
"tsx": "^4.19.3",
"typescript": "^5.2.2"
},
"types": "./dist/menu.d.ts",
"main": "./dist/menu.mjs",
"module": "./dist/menu.mjs",
"exports": {
".": {
"types": "./dist/menu.d.ts",
"import": "./dist/menu.mjs",
"default": "./dist/menu.mjs"
},
"./menu": {
"types": "./dist/menu.d.ts",
"import": "./dist/menu.mjs"
},
"./package.json": "./package.json"
},
"bin": {
"modular-cli-menu": "./dist/menu.mjs"
},
"files": [
"package.json",
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "tsx src/index.ts",
"build": "npx pkgroll --clean-dist --minify --env.DEBUG_LOG=false",
"build:en": "npx pkgroll --clean-dist --minify --env.DEBUG_LOG=false --env.MENU_LANGUAGE=it",
"build:it": "npx pkgroll --clean-dist --minify --env.DEBUG_LOG=false --env.MENU_LANGUAGE=it",
"pack:test": "npm pack --dry-run",
"prepack": "clean-pkg-json -r scripts,plugins"
},
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"updatePackageJson": true,
"npmPublish": true
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}