UNPKG

sb-edit

Version:

Import, edit, and export Scratch project files

63 lines (62 loc) 1.63 kB
{ "name": "sb-edit", "version": "0.14.0", "description": "Import, edit, and export Scratch project files", "keywords": [ "Scratch", "mit-scratch", "sb2", "sb3", "leopard" ], "bugs": { "url": "https://github.com/leopard-js/sb-edit/issues" }, "repository": { "type": "git", "url": "https://github.com/leopard-js/sb-edit.git" }, "license": "MIT", "author": "Josh Pullen <hello@joshuapullen.com> (https://joshuapullen.com/)", "contributors": [ "Quasar Nebula <qznebula@protonmail.com> (https://github.com/towerofnix)", "adroitwhiz <adroitwhiz@protonmail.com> (https://github.com/adroitwhiz)" ], "main": "lib/index.js", "types": "lib/index.d.ts", "files": [ "lib/**/*" ], "bin": { "sb-edit": "lib/cli/index.js" }, "scripts": { "build": "tsc", "format": "prettier --write \"src/**/*.ts\"", "lint": "eslint \"src/**/*.ts\"", "prepare": "npm run build", "prepublishOnly": "npm test && npm run lint", "test": "jest --config jestconfig.json", "watch": "tsc -w" }, "dependencies": { "chalk": "^4.1.2", "commander": "^12.0.0", "jszip": "^3.10.1", "prettier": "^2.8.8" }, "devDependencies": { "@types/jest": "^29.5.11", "@types/jszip": "^3.1.6", "@types/node": "^20.12.7", "@types/prettier": "^2.7.3", "@typescript-eslint/eslint-plugin": "^6.14.0", "@typescript-eslint/parser": "^6.14.0", "eslint": "^8.56.0", "eslint-config-prettier": "^8.8.0", "eslint-plugin-prettier": "^4.2.1", "jest": "^29.7.0", "ts-jest": "^29.1.1", "typescript": "^4.9.5" } }