UNPKG

@shockpkg/ria-packager

Version:

Package for creating Adobe AIR packages

94 lines (93 loc) 3.37 kB
{ "name": "@shockpkg/ria-packager", "description": "Package for creating Adobe AIR packages", "version": "5.0.0", "keywords": [ "shockpkg", "flash", "swf", "air", "application", "packager" ], "main": "cjs/index", "exports": { ".": [ { "types": "./dts/index.d.ts", "import": "./esm/index.mjs", "require": "./cjs/index.js", "default": "./cjs/index.js" }, "./cjs/index.js" ] }, "types": "dts/index.d.ts", "module": "esm/index.mjs", "sideEffects": false, "engines": { "node": ">=18.12.0" }, "scripts": { "shockpkg": "shockpkg", "clean": "rimraf dts esm cjs spec/packages", "lint": "eslint .", "format": "prettier -w .", "formatted": "prettier -c .", "build:dts": "tsc", "build:esm": "babel --env-name esm -x .ts -s true -d esm --out-file-extension .mjs src", "build:cjs": "babel --env-name cjs -x .ts -s true -d cjs --out-file-extension .js src", "build": "npm run build:dts && npm run build:esm && npm run build:cjs", "test-legacy:esm": "node -r source-map-support/register --test esm", "test-legacy:cjs": "node -r source-map-support/register --test cjs", "test-legacy": "npm run test-legacy:esm && npm run test-legacy:cjs", "test:esm": "node -r source-map-support/register --test 'esm/**/*.test.mjs'", "test:cjs": "node -r source-map-support/register --test 'cjs/**/*.test.js'", "test": "npm run test:esm && npm run test:cjs", "all-legacy:esm": "npm run clean && npm run build:esm && npm run test-legacy:esm && npm run lint && npm run formatted", "all-legacy:cjs": "npm run clean && npm run build:cjs && npm run test-legacy:cjs && npm run lint && npm run formatted", "all-legacy": "npm run clean && npm run build && npm run test-legacy && npm run lint && npm run formatted", "all:esm": "npm run clean && npm run build:esm && npm run test:esm && npm run lint && npm run formatted", "all:cjs": "npm run clean && npm run build:cjs && npm run test:cjs && npm run lint && npm run formatted", "all": "npm run clean && npm run build && npm run test && npm run lint && npm run formatted", "prepack": "npm run clean && npm run build" }, "repository": "https://github.com/shockpkg/ria-packager.git", "bugs": "https://github.com/shockpkg/ria-packager/issues", "author": "JrMasterModelBuilder", "copyright": "Copyright (c) 2019-2024 JrMasterModelBuilder", "license": "MPL-2.0", "dependencies": { "@shockpkg/archive-files": "^3.2.5", "@shockpkg/icon-encoder": "^3.2.3", "@shockpkg/plist-dom": "^4.0.7", "@shockpkg/resedit": "^2.0.2", "@xmldom/xmldom": "^0.9.8", "node-forge": "^1.3.1", "portable-executable-signature": "^2.0.6", "puka": "^1.0.1" }, "devDependencies": { "@babel/cli": "^7.28.0", "@babel/core": "^7.28.0", "@babel/preset-env": "^7.28.0", "@babel/preset-typescript": "^7.27.1", "@eslint/js": "^9.30.1", "@shockpkg/cli": "^3.0.9", "@shockpkg/core": "^3.0.8", "@stylistic/eslint-plugin": "^5.1.0", "@types/node": "^24.0.12", "@types/node-forge": "^1.3.12", "babel-plugin-module-replace": "^1.0.1", "babel-plugin-search-and-replace": "^1.1.1", "eslint": "^9.30.1", "eslint-config-prettier": "^10.1.5", "eslint-plugin-jsdoc": "^51.3.4", "eslint-plugin-unicorn": "^59.0.1", "prettier": "^3.6.2", "rimraf": "^6.0.1", "source-map-support": "^0.5.21", "typescript": "^5.8.3", "typescript-eslint": "^8.36.0" } }