snes-disassembler
Version:
A Super Nintendo (SNES) ROM disassembler for 65816 assembly
71 lines (70 loc) • 2.12 kB
JSON
{
"name": "snes-disassembler",
"version": "1.0.1",
"description": "A Super Nintendo (SNES) ROM disassembler for 65816 assembly",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"snes-disasm": "dist/cli.js"
},
"scripts": {
"build": "npm run clean && tsc",
"build:watch": "tsc --watch",
"dev": "tsx src/cli.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts --fix",
"lint:check": "eslint src/**/*.ts",
"type-check": "tsc --noEmit",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"clean": "rimraf dist coverage",
"cli": "tsx src/cli.ts",
"interactive": "tsx src/cli.ts interactive",
"install-global": "npm run build && npm link",
"prepublishOnly": "npm run build && npm run test && npm run lint:check",
"validate": "npm run type-check && npm run lint:check && npm run test",
"check-deps": "depcheck",
"check-deps-detail": "depcheck --detailed",
"knip": "knip",
"knip-production": "knip --production",
"docs:generate": "typedoc src --out docs --theme default"
},
"keywords": [
"snes",
"65816",
"disassembler",
"assembly",
"retro",
"gaming"
],
"author": "Your Name <your.email@example.com> (https://yourwebsite.com)",
"license": "MIT",
"devDependencies": {
"@types/inquirer": "^9.0.8",
"@types/jest": "^30.0.0",
"@types/node": "^20.19.9",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"depcheck": "^1.4.7",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"knip": "^5.62.0",
"ts-jest": "^29.1.1",
"tsx": "^4.20.3",
"typescript": "^5.2.2"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"@huggingface/transformers": "^3.7.0",
"@inquirer/prompts": "^7.7.1",
"chalk": "^5.4.1",
"commander": "^14.0.0",
"fuzzy": "^0.1.3",
"inquirer-file-tree-selection-prompt": "^2.0.5",
"listr2": "^9.0.1",
"pino": "^9.7.0",
"pino-pretty": "^13.0.0"
}
}