-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.78 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
59
60
61
{
"name": "babel-plugin-javascript-aot",
"description": "",
"main": "dist/cli.js",
"type": "module",
"scripts": {
"build": "rollup -c",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:update": "pnpm test -- --updateSnapshot",
"posttest:update": "pnpm format .",
"lint": "eslint --flag unstable_config_lookup_from_file . --max-warnings=0",
"format": "prettier --write",
"format-check": "prettier --check",
"type-check": "tsc --noEmit",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"engines": {
"node": "^20 || ^22"
},
"packageManager": "pnpm@9.13.2",
"dependencies": {
"@babel/core": "^7.26.7",
"@babel/generator": "^7.26.5",
"@babel/helper-validator-identifier": "^7.25.9",
"@babel/parser": "^7.26.7",
"@babel/traverse": "^7.26.7",
"@babel/types": "^7.26.7",
"babel-plugin-tester": "^11.0.4",
"commander": "^13.1.0",
"lodash-es": "^4.17.21",
"zod": "^3.24.1"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/preset-typescript": "^7.26.0",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@types/babel__core": "^7.20.5",
"@types/babel__generator": "^7.6.8",
"@types/babel__helper-validator-identifier": "^7.15.2",
"@types/babel__traverse": "^7.20.6",
"@types/jest": "^29.5.14",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.13.1",
"@types/prettier": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"eslint": "^9.19.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"rollup": "^4.34.4",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.7.3"
}
}