-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.86 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.86 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "es6-refactor",
"version": "1.0.0",
"description": "Automatically refactor JavaScript/TypeScript code to use modern ES6+ patterns and features",
"main": "scripts/index.js",
"bin": {
"es6-refactor": "./scripts/cli.js"
},
"scripts": {
"test": "node tests/run.js",
"lint": "eslint scripts/ --ext .js",
"refactor": "node scripts/cli.js",
"validate": "node scripts/validate.js"
},
"keywords": [
"javascript",
"typescript",
"es6",
"refactor",
"modernize",
"code-quality",
"ast",
"babel",
"openclaw",
"skill"
],
"author": "OpenClaw Skill Factory",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/openclaw/skills",
"directory": "es6-refactor"
},
"homepage": "https://docs.openclaw.ai/skills/es6-refactor",
"bugs": {
"url": "https://github.com/openclaw/skills/issues/new?template=skill-issue.yml"
},
"engines": {
"node": ">=14.0.0",
"openclaw": ">=1.0.0"
},
"files": [
"scripts/",
"references/",
"assets/",
"SKILL.md",
"README.md"
],
"dependencies": {
"@babel/core": "^7.24.0",
"@babel/generator": "^7.24.0",
"@babel/parser": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/traverse": "^7.24.0",
"@babel/types": "^7.24.0",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"glob": "^10.3.10",
"prettier": "^3.2.0",
"recast": "^0.23.4"
},
"devDependencies": {
"chai": "^4.3.8",
"eslint": "^8.56.0",
"mocha": "^10.2.0"
},
"openclaw": {
"skill": {
"id": "es6-refactor",
"version": "1.0.0",
"compatibility": ">=1.0.0",
"permissions": [
"file:read",
"file:write"
],
"capabilities": [
"refactor:javascript",
"refactor:typescript",
"transform:es6",
"transform:modules"
]
}
}
}