2024-12-11 09:51:03 +00:00
|
|
|
{
|
|
|
|
"scripts": {
|
2025-01-10 02:05:17 +00:00
|
|
|
"build-env": "rollup -c --environment INPUT:src/stdlib/_entry.ts,OUTPUT:build/js/stdlib.js,POLYFILLS:src/polyfills",
|
2025-01-24 03:57:15 +00:00
|
|
|
"build-babel": "rollup -c --environment INPUT:src/transpiler/_entry-babel.ts,OUTPUT:build/js/babel.js",
|
|
|
|
"build-coffee": "rollup -c --environment INPUT:src/transpiler/_entry-coffee.ts,OUTPUT:build/js/coffee.js",
|
|
|
|
"build-typescript": "rollup -c --environment INPUT:src/transpiler/_entry-typescript.ts,OUTPUT:build/js/typescript.js"
|
2024-12-11 09:51:03 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-12-28 11:18:56 +00:00
|
|
|
"@babel/core": "^7.26.0",
|
2024-12-11 09:51:03 +00:00
|
|
|
"@babel/runtime": "^7.26.0",
|
2024-12-28 11:18:56 +00:00
|
|
|
"@babel/standalone": "^7.26.4",
|
|
|
|
"@rollup/plugin-json": "^6.1.0",
|
|
|
|
"@types/babel__preset-env": "^7.9.7",
|
|
|
|
"@types/babel__standalone": "^7.1.9",
|
|
|
|
"@types/coffeescript": "^2.5.7",
|
|
|
|
"coffeescript": "^2.7.0",
|
2024-12-11 09:51:03 +00:00
|
|
|
"typescript": "^5.7.2"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@babel/plugin-transform-class-properties": "^7.25.9",
|
|
|
|
"@babel/plugin-transform-runtime": "^7.25.9",
|
|
|
|
"@babel/plugin-transform-typescript": "^7.25.9",
|
|
|
|
"@babel/preset-env": "^7.26.0",
|
|
|
|
"@rollup/plugin-babel": "^6.0.4",
|
|
|
|
"@rollup/plugin-commonjs": "^28.0.1",
|
|
|
|
"@rollup/plugin-node-resolve": "^15.3.0",
|
|
|
|
"@rollup/plugin-terser": "^0.4.4",
|
|
|
|
"@rollup/plugin-typescript": "^12.1.1",
|
|
|
|
"@types/node": "^22.10.1",
|
|
|
|
"rollup": "^4.24.0",
|
|
|
|
"tslib": "^2.8.0"
|
|
|
|
}
|
|
|
|
}
|