-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.14 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.14 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
{
"name": "@sap-ux/fe-fpm-cli",
"version": "0.1.135",
"description": "A simple CLI to prompt required information to create a building block using the fe-fpm-writer module's prompt and generate functions.",
"license": "Apache-2.0",
"private": true,
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"build": "tsc",
"watch": "tsc --watch",
"clean": "rimraf dist coverage",
"format": "prettier --write '**/*.{js,json,ts,yaml,yml}' --ignore-path ../../../.prettierignore",
"lint": "eslint",
"lint:fix": "eslint --fix"
},
"dependencies": {
"@sap-ux/fe-fpm-writer": "workspace:*",
"inquirer": "^8.2.7",
"mem-fs": "^2.1.0",
"mem-fs-editor": "^9.4.0"
},
"devDependencies": {
"@types/inquirer": "^8.2.6",
"@types/mem-fs": "^1.1.2",
"@types/mem-fs-editor": "^7.0.1",
"@types/vinyl": "^2.0.12",
"typescript-eslint": "^8.57.2"
},
"files": [
"dist",
"LICENSE"
],
"engines": {
"pnpm": ">=6.26.1 < 7.0.0 || >=7.1.0",
"node": ">=20.x"
}
}