-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.42 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
{
"type": "module",
"name": "@stone926/babel-plugin-operator-overload",
"version": "1.1.1",
"description": "A babel plugin enabling operator overloading",
"repository": "https://github.com/stone926/babel-plugin-operator",
"main": "./dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/plugin-transform-typescript": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"rollup": "^4.28.1",
"tslib": "^2.8.1",
"typescript": "^5.7.2"
},
"scripts": {
"compile": "babel input --out-dir output --extensions .ts,.js,.jsx,.tsx",
"rollup": "rollup --config rollup.config.ts --configPlugin typescript",
"build": "npm run rollup && npm run compile"
},
"peerDependencies": {
"@babel/generator": "^7.26.2",
"@babel/parser": "^7.26.2",
"@babel/plugin-syntax-typescript": "^7.25.9",
"@babel/template": "^7.25.9",
"@babel/traverse": "^7.25.9",
"@babel/types": "^7.26.0"
},
"license": "UNLICENSED",
"keywords": [
"babel",
"javascript",
"babel-plugin",
"js"
],
"publishConfig": {
"access": "public"
}
}