ruffle/web/packages/extension/package.json

35 lines
1.3 KiB
JSON
Raw Normal View History

2019-08-20 04:29:53 +00:00
{
"name": "ruffle-extension",
"version": "0.1.0",
2021-03-09 19:11:46 +00:00
"description": "Extension packaging for Ruffle Flash emulator",
"license": "(MIT OR Apache-2.0)",
2020-05-26 15:45:55 +00:00
"private": true,
"type": "module",
"scripts": {
"build": "tsc -p jsconfig.json && npm run build:generic && npm run build:firefox",
"build:generic": "webpack --env generic && node tools/inject_plugin_polyfill.js && node tools/zip.js dist/ruffle_extension.zip",
"build:firefox": "webpack --env firefox && node tools/inject_plugin_polyfill.js && node tools/zip.js dist/firefox_unsigned.xpi && npm run sign-firefox",
"sign-firefox": "node tools/sign_xpi.js dist/firefox_unsigned.xpi dist/firefox.xpi ../../../reproducible-source.zip"
},
"dependencies": {
"ruffle-core": "^0.1.0"
},
"devDependencies": {
"@tsconfig/strictest": "^2.0.2",
"@types/archiver": "^5.3.4",
"@types/chrome": "^0.0.248",
"@types/common-tags": "^1.8.3",
"@types/firefox-webext-browser": "^111.0.3",
"@types/jsonwebtoken": "^9.0.4",
"@types/mz": "^2.7.6",
"@types/request": "^2.48.11",
"archiver": "^6.0.1",
2023-03-12 21:24:42 +00:00
"json5": "^2.2.3",
"sign-addon": "^6.3.0",
"temp-dir": "^3.0.0",
"ts-loader": "^9.5.0",
"typescript": "^5.2.2",
"webpack-cli": "^5.1.4"
}
}