-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 991 Bytes
/
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
{
"name": "optimizer-plugin",
"version": "1.0.1",
"description": "optimizerPlugin is a Babel plugin that optimizes code through static analysis. It is primarily written and documented by ChatGPT, while the user is responsible for writing test cases and verifying if the code effects meet expectations.",
"main": "index.js",
"bin": "ci/index.js",
"scripts": {
"test": "node test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/schizobulia/optimizer-code.git"
},
"keywords": [
"Babel",
"plugin",
"static analysis",
"code optimization",
"ChatGPT",
"test cases",
"code effect verification"
],
"bugs": {
"url": "https://github.com/schizobulia/optimizer-code/issues"
},
"homepage": "https://github.com/schizobulia/optimizer-code#readme",
"author": "schizobulia",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.23.7",
"@babel/types": "^7.23.6",
"fs-extra": "^11.2.0"
}
}