-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
58 lines (58 loc) · 1.43 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
{
"name": "@uday-rana/codeshift",
"version": "3.0.0",
"description": "Transform code from one language to another",
"main": "src/index.js",
"bin": {
"codeshift": "src/index.js"
},
"directories": {
"example": "examples",
"test": "tests"
},
"author": "Uday Rana (https://github.com/uday-rana)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/uday-rana/codeshift.git"
},
"bugs": {
"url": "https://github.com/uday-rana/codeshift/issues"
},
"homepage": "https://github.com/uday-rana/codeshift#readme",
"lint-staged": {
"**/*": [
"prettier --write --ignore-unknown",
"oxlint",
"eslint"
]
},
"scripts": {
"start": "node ./src/index.js",
"lint": "oxlint && eslint",
"prettier": "prettier --write .",
"prepare": "husky",
"test": "jest --runInBand --",
"test:watch": "jest --watch --runInBand --",
"test:coverage": "jest --coverage --runInBand"
},
"dependencies": {
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"openai": "^4.63.0",
"smol-toml": "^1.3.0"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/jest": "^29.5.14",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-oxlint": "^0.10.1",
"globals": "^15.11.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"oxlint": "^0.10.3",
"prettier": "^3.3.3"
}
}