-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.37 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.37 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
{
"name": "@commercetools-frontend/codemod",
"version": "27.2.0",
"description": "Codemod transformations for Custom Applications",
"bugs": "https://github.com/commercetools/merchant-center-application-kit/issues",
"repository": {
"type": "git",
"url": "https://github.com/commercetools/merchant-center-application-kit.git",
"directory": "packages/codemod"
},
"homepage": "https://docs.commercetools.com/merchant-center-customizations",
"keywords": ["javascript", "frontend", "codemod", "toolkit"],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"main": "./build/src/index.js",
"files": ["bin", "build", "package.json", "LICENSE", "README.md"],
"bin": {
"mc-codemod": "./bin/mc-codemod.js"
},
"scripts": {
"build": "rimraf build && tsc",
"build:bundles:watch": "pnpm run build -w"
},
"dependencies": {
"@babel/core": "^7.22.17",
"@babel/preset-env": "^7.22.15",
"commander": "^13.1.0",
"glob": "^10.5.0",
"jscodeshift": "0.16.1",
"prettier": "2.8.8"
},
"devDependencies": {
"@commercetools-frontend/application-components": "workspace:*",
"@emotion/react": "^11.14.0",
"@tsconfig/node24": "^24.0.0",
"@types/jscodeshift": "0.12.0",
"@types/prettier": "2.7.3",
"rimraf": "6.0.1",
"typescript": "5.9.2"
},
"engines": {
"node": "18.x || 20.x || >=22.0.0"
}
}