forked from remkoj/optimizely-dxp-clients
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.09 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.09 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
{
"name": "@remkoj/optimizely-cms-cli",
"description": "Optimizely CMS CLI Tools",
"type": "module",
"version": "4.3.1",
"bin": {
"opti-cms": "./dist/index.js"
},
"files": [
"./dist"
],
"scripts": {
"update-cfg": "node ./script/update-cfg.js",
"prepare": "node ./script/update-cfg.js && rollup -c",
"watch": "rollup -c ./rollup.config.js -w",
"compile": "rollup -c ./rollup.config.js",
"opti-cms": "yarn node ./dist/index.js"
},
"devDependencies": {
"@remkoj/optimizely-cms-api": "workspace:4.3.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-typescript": "^12.1.2",
"@types/node": "^22.13.5",
"@types/yargs": "^17.0.33",
"rollup": "^4.34.8",
"tslib": "^2.8.1",
"typescript": "^5.7.3"
},
"peerDependencies": {
"@remkoj/optimizely-cms-api": "^4.3.1",
"@types/node": "*"
},
"dependencies": {
"@inquirer/prompts": "^7.3.2",
"chalk": "^5.4.1",
"cli-table3": "^0.6.5",
"dotenv": "^16.4.7",
"dotenv-expand": "^12.0.1",
"figures": "^6.1.0",
"glob": "^11.0.1",
"yargs": "^17.7.2"
}
}