{"library":"parcel-plugin-jsy","title":"parcel-plugin-jsy","description":"A Parcel 1.x plugin that transpiles JSY syntax to standard JavaScript without requiring Babel. Current stable version 0.2.1. JSY is a superset of JavaScript with simplified syntax (e.g., trailing commas, optional semicolons, and concise arrow functions). This plugin integrates JSY directly into the Parcel bundling pipeline, replacing the traditional Babel toolchain for JSY projects. It is specific to Parcel 1.x (parcel-bundler peer dependency) and is not compatible with Parcel v2. Published under the MIT license, it has limited maintenance frequency.","language":"javascript","status":"deprecated","last_verified":"Fri May 01","install":{"commands":["npm install parcel-plugin-jsy"],"cli":null},"imports":["// Package works via Parcel plugin resolution automatically","\"devDependencies\": { \"parcel-plugin-jsy\": \"^0.2.1\" }","parcel build index.html"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"// 1. Install dependencies\nnpm install --save-dev parcel-bundler@^1.12.4 parcel-plugin-jsy@^0.2.1\n\n// 2. Create a JSY file (e.g., app.jsy)\n// JSY example:\nconst add = (a, b) -> a + b\nconsole.log add(1, 2)\n\n// 3. Create an HTML file that references app.jsy\n// <!DOCTYPE html>\n// <html><body><script src=\"app.jsy\"></script></body></html>\n\n// 4. Build with Parcel\n// npx parcel build index.html","lang":"javascript","description":"Demonstrates installing the required dependencies, writing a simple JSY file, and building it with Parcel 1.x.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}