| { | |
| "name": "scratch-vm", | |
| "version": "0.2.0", | |
| "description": "Virtual Machine for Scratch 3.0", | |
| "author": "Massachusetts Institute of Technology", | |
| "license": "BSD-3-Clause", | |
| "homepage": "https://github.com/LLK/scratch-vm#readme", | |
| "repository": { | |
| "type": "git", | |
| "url": "git+ssh://git@github.com/LLK/scratch-vm.git" | |
| }, | |
| "main": "./src/index.js", | |
| "browser": "./src/index.js", | |
| "scripts": { | |
| "build": "npm run docs && webpack --progress --colors --bail", | |
| "coverage": "tap ./test/{unit,integration}/*.js --coverage --coverage-report=lcov", | |
| "deploy": "touch playground/.nojekyll && gh-pages -t -d playground -m \"Build for $(git log --pretty=format:%H -n1)\"", | |
| "docs": "exit 0 || jsdoc -c .jsdoc.json", | |
| "i18n:src": "mkdirp translations/core && format-message extract --out-file translations/core/en.json src/extensions/**/index.js", | |
| "i18n:push": "tx-push-src scratch-editor extensions translations/core/en.json", | |
| "lint": "exit 0 || eslint . && format-message lint src/**/*.js", | |
| "prepublishOnly": "in-publish && npm run build || not-in-publish", | |
| "start": "webpack-dev-server", | |
| "tap": "tap ./test/{unit,integration}/*.js", | |
| "tap:unit": "tap ./test/unit/*.js", | |
| "tap:integration": "tap ./test/integration/*.js", | |
| "test": "npm run lint && npm run docs && npm run tap", | |
| "watch": "webpack --progress --colors --watch", | |
| "version": "json -f package.json -I -e \"this.repository.sha = '$(git log -n1 --pretty=format:%H)'\"" | |
| }, | |
| "dependencies": { | |
| "mathjs": "13.2.0", | |
| "@turbowarp/json": "^0.1.2", | |
| "@vernier/godirect": "1.5.0", | |
| "arraybuffer-loader": "^1.0.6", | |
| "atob": "2.1.2", | |
| "btoa": "1.2.1", | |
| "cannon-es": "0.20.0", | |
| "canvas-toBlob": "1.0.0", | |
| "decode-html": "2.0.0", | |
| "diff-match-patch": "1.0.4", | |
| "dompurify": "^3.0.9", | |
| "format-message": "6.2.1", | |
| "htmlparser2": "^3.10.0", | |
| "immutable": "3.8.2", | |
| "jszip": "^3.1.5", | |
| "lz-string": "^1.5.0", | |
| "mathjs": "11.11.1", | |
| "matter-js": "^0.20.0", | |
| "mersenne-twister": "^1.1.0", | |
| "minilog": "3.1.0", | |
| "pathfinding": "^0.4.18", | |
| "schema-utils": "^2.7.1", | |
| "scratch-parser": "git+https://github.com/PenguinMod/PenguinMod-Parser.git#master", | |
| "scratch-sb1-converter": "0.2.7", | |
| "scratch-translate-extension-languages": "0.0.20191118205314", | |
| "simplex-noise": "^4.0.1", | |
| "text-encoding": "0.7.0", | |
| "three": "0.153.0", | |
| "three-mesh-bvh": "0.6.0", | |
| "tone": "^14.7.77", | |
| "worker-loader": "^1.1.1" | |
| }, | |
| "peerDependencies": { | |
| "scratch-svg-renderer": "github:PenguinMod/penguinmod-svg-renderer#develop" | |
| }, | |
| "devDependencies": { | |
| "@babel/core": "7.13.10", | |
| "@babel/preset-env": "7.14.8", | |
| "adm-zip": "0.4.11", | |
| "babel-eslint": "10.1.0", | |
| "babel-loader": "8.2.2", | |
| "callsite": "1.0.0", | |
| "copy-webpack-plugin": "4.5.4", | |
| "docdash": "1.2.0", | |
| "eslint": "5.3.0", | |
| "eslint-config-scratch": "5.1.0", | |
| "expose-loader": "0.7.5", | |
| "file-loader": "2.0.0", | |
| "format-message-cli": "6.2.0", | |
| "gh-pages": "1.2.0", | |
| "in-publish": "2.0.1", | |
| "js-md5": "0.7.3", | |
| "jsdoc": "3.6.6", | |
| "json": "^9.0.4", | |
| "lodash.defaultsdeep": "4.6.1", | |
| "pngjs": "3.3.3", | |
| "ml5": "^0.12.2", | |
| "scratch-audio": "0.1.0-prerelease.20200528195344", | |
| "scratch-blocks": "git+https://github.com/PenguinMod/PenguinMod-Blocks.git#develop-builds", | |
| "scratch-l10n": "3.14.20220526031602", | |
| "scratch-render": "github:PenguinMod/penguinmod-render#develop", | |
| "scratch-render-fonts": "github:PenguinMod/penguinmod-render-fonts#master", | |
| "scratch-storage": "git+https://github.com/PenguinMod/PenguinMod-Storage.git#develop", | |
| "scratch-svg-renderer": "github:PenguinMod/penguinmod-svg-renderer#develop", | |
| "script-loader": "0.7.2", | |
| "stats.js": "0.17.0", | |
| "tap": "12.0.1", | |
| "tiny-worker": "2.3.0", | |
| "uglifyjs-webpack-plugin": "1.2.7", | |
| "webpack": "4.46.0", | |
| "webpack-cli": "3.1.0", | |
| "webpack-dev-server": "3.11.2" | |
| }, | |
| "private": true | |
| } | |