ruffle/web/packages/extension/package.json

36 lines
1.4 KiB
JSON

{
"name": "ruffle-extension",
"version": "0.1.0",
"description": "Extension packaging for Ruffle Flash emulator",
"license": "(MIT OR Apache-2.0)",
"private": true,
"type": "module",
"scripts": {
"build": "tsc -p jsconfig.json && npm run build:generic && npm run build:firefox",
"build:generic": "webpack --env generic && tsx tools/inject_plugin_polyfill.ts && tsx tools/zip.ts dist/ruffle_extension.zip",
"build:firefox": "webpack --env firefox && tsx tools/inject_plugin_polyfill.ts && tsx tools/zip.ts dist/firefox_unsigned.xpi && npm run sign-firefox",
"sign-firefox": "tsx tools/submit_xpi.ts dist/firefox_unsigned.xpi ../../../reproducible-source.zip",
"checkTypes": "tsc --noemit && tsc --noemit -p tools"
},
"dependencies": {
"ruffle-core": "^0.1.0"
},
"devDependencies": {
"@tsconfig/strictest": "^2.0.5",
"@types/archiver": "^6.0.2",
"@types/chrome": "^0.0.270",
"@types/common-tags": "^1.8.4",
"@types/firefox-webext-browser": "^120.0.4",
"@types/jsonwebtoken": "^9.0.6",
"archiver": "^7.0.1",
"json5": "^2.2.3",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"webpack-cli": "^5.1.4",
"axios": "^1.7.5",
"form-data": "^4.0.0",
"jsonwebtoken": "^9.0.2",
"tsx": "^4.18.0"
}
}