-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 900 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 900 Bytes
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
{
"name": "sly-altercode",
"version": "0.0.2",
"description": "A TypeScript-based tool for automated code transformations",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"bin": {
"altercode": "dist/index.js"
},
"type": "module",
"scripts": {
"build": "tsc --emitDeclarationOnly && node build.js",
"check": "tsc --noEmit",
"prepublishOnly": "npm run build",
"start": "node dist/index.js"
},
"keywords": [
"codemod",
"refactor",
"typescript",
"code-transformation",
"automation"
],
"author": {
"name": "Lakshmikanth Vallampati",
"url": "https://github.com/kanthvallampati/"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^20.8.0",
"esbuild": "^0.20.1",
"typescript": "^5.2.2"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=16.0.0"
}
}