2016-03-28 12:53:44 -04:00
|
|
|
{
|
2016-04-08 13:10:37 -04:00
|
|
|
"name": "scratch-vm",
|
2024-07-24 05:19:01 -04:00
|
|
|
"version": "4.5.360",
|
2016-04-18 17:20:30 -04:00
|
|
|
"description": "Virtual Machine for Scratch 3.0",
|
2016-03-28 12:53:44 -04:00
|
|
|
"author": "Massachusetts Institute of Technology",
|
|
|
|
"license": "BSD-3-Clause",
|
2023-09-28 12:16:47 -04:00
|
|
|
"homepage": "https://github.com/scratchfoundation/scratch-vm#readme",
|
2016-03-28 12:53:44 -04:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2023-09-28 12:16:47 -04:00
|
|
|
"url": "https://github.com/scratchfoundation/scratch-vm.git",
|
2024-07-24 05:19:01 -04:00
|
|
|
"sha": "f17223906c4b92b889dc50d2bd6b51b563b768dd"
|
2016-03-28 12:53:44 -04:00
|
|
|
},
|
2024-03-14 12:57:59 -04:00
|
|
|
"main": "./dist/node/scratch-vm.js",
|
|
|
|
"browser": "./dist/web/scratch-vm.js",
|
2024-03-08 23:28:08 -05:00
|
|
|
"exports": {
|
2024-03-11 13:44:40 -04:00
|
|
|
"webpack": "./src/index.js",
|
2024-03-08 23:32:15 -05:00
|
|
|
"browser": "./dist/web/scratch-vm.js",
|
2024-03-13 16:20:48 -04:00
|
|
|
"node": "./dist/node/scratch-vm.js",
|
|
|
|
"default": "./src/index.js"
|
2024-03-08 23:28:08 -05:00
|
|
|
},
|
2016-03-28 12:53:44 -04:00
|
|
|
"scripts": {
|
2024-02-28 14:26:05 -05:00
|
|
|
"build": "npm run docs && webpack --progress",
|
2017-09-22 05:41:08 -04:00
|
|
|
"coverage": "tap ./test/{unit,integration}/*.js --coverage --coverage-report=lcov",
|
2018-07-31 09:00:19 -04:00
|
|
|
"docs": "jsdoc -c .jsdoc.json",
|
2018-12-03 14:24:00 -05:00
|
|
|
"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",
|
2017-12-11 15:41:45 -05:00
|
|
|
"lint": "eslint . && format-message lint src/**/*.js",
|
2022-06-02 13:14:41 -04:00
|
|
|
"prepare": "husky install",
|
2017-05-13 20:25:34 -04:00
|
|
|
"prepublish": "in-publish && npm run build || not-in-publish",
|
2024-02-28 14:26:05 -05:00
|
|
|
"start": "webpack serve",
|
2017-09-22 05:41:08 -04:00
|
|
|
"tap": "tap ./test/{unit,integration}/*.js",
|
|
|
|
"tap:unit": "tap ./test/unit/*.js",
|
|
|
|
"tap:integration": "tap ./test/integration/*.js",
|
2022-06-02 14:00:14 -04:00
|
|
|
"test": "npm run lint && npm run tap",
|
2024-02-28 14:26:05 -05:00
|
|
|
"watch": "webpack --progress --watch",
|
2017-09-22 05:41:08 -04:00
|
|
|
"version": "json -f package.json -I -e \"this.repository.sha = '$(git log -n1 --pretty=format:%H)'\""
|
2016-04-08 13:10:37 -04:00
|
|
|
},
|
2022-06-02 13:21:18 -04:00
|
|
|
"config": {
|
|
|
|
"commitizen": {
|
|
|
|
"path": "cz-conventional-changelog"
|
|
|
|
}
|
|
|
|
},
|
2024-03-08 22:51:36 -05:00
|
|
|
"browserslist": [
|
|
|
|
"Chrome >= 63",
|
|
|
|
"Edge >= 15",
|
|
|
|
"Firefox >= 57",
|
|
|
|
"Safari >= 11"
|
|
|
|
],
|
2022-06-02 16:01:00 -04:00
|
|
|
"tap": {
|
2022-08-31 17:57:30 -04:00
|
|
|
"branches": 60,
|
|
|
|
"functions": 70,
|
|
|
|
"lines": 70,
|
|
|
|
"statements": 70
|
2022-06-02 16:01:00 -04:00
|
|
|
},
|
2018-04-30 11:53:01 -04:00
|
|
|
"dependencies": {
|
2024-02-15 19:14:06 -05:00
|
|
|
"@vernier/godirect": "^1.5.0",
|
2018-08-13 10:47:41 -04:00
|
|
|
"arraybuffer-loader": "^1.0.6",
|
2024-02-15 19:14:06 -05:00
|
|
|
"atob": "^2.1.2",
|
|
|
|
"btoa": "^1.2.1",
|
|
|
|
"canvas-toBlob": "^1.0.0",
|
|
|
|
"decode-html": "^2.0.0",
|
|
|
|
"diff-match-patch": "^1.0.4",
|
|
|
|
"format-message": "^6.2.1",
|
|
|
|
"htmlparser2": "^3.10.0",
|
|
|
|
"immutable": "^3.8.1",
|
2018-04-30 11:53:01 -04:00
|
|
|
"jszip": "^3.1.5",
|
2024-02-15 19:14:06 -05:00
|
|
|
"minilog": "^3.1.0",
|
2024-02-23 12:15:22 -05:00
|
|
|
"scratch-audio": "^1.0.6",
|
2024-02-15 19:14:06 -05:00
|
|
|
"scratch-parser": "^5.1.1",
|
2024-02-23 12:15:22 -05:00
|
|
|
"scratch-render": "^1.0.13",
|
2024-02-23 13:06:48 -05:00
|
|
|
"scratch-sb1-converter": "^1.0.0",
|
2024-02-23 12:15:22 -05:00
|
|
|
"scratch-storage": "^2.3.5",
|
2024-07-23 15:21:09 -04:00
|
|
|
"scratch-svg-renderer": "2.3.97",
|
2024-02-15 19:14:06 -05:00
|
|
|
"scratch-translate-extension-languages": "^1.0.0",
|
|
|
|
"text-encoding": "^0.7.0",
|
|
|
|
"uuid": "^8.3.2",
|
2024-03-04 11:39:17 -05:00
|
|
|
"web-worker": "^1.3.0"
|
2018-04-30 11:53:01 -04:00
|
|
|
},
|
2016-09-24 18:11:01 -04:00
|
|
|
"devDependencies": {
|
2024-07-18 14:29:43 -04:00
|
|
|
"@babel/core": "7.24.9",
|
2024-07-14 16:19:59 -04:00
|
|
|
"@babel/eslint-parser": "7.24.8",
|
|
|
|
"@babel/preset-env": "7.24.8",
|
2024-02-20 18:03:39 -05:00
|
|
|
"@commitlint/cli": "17.8.1",
|
|
|
|
"@commitlint/config-conventional": "17.8.1",
|
2018-08-30 11:23:34 -04:00
|
|
|
"adm-zip": "0.4.11",
|
2024-03-08 21:44:44 -05:00
|
|
|
"babel-loader": "9.1.3",
|
2021-07-26 22:39:41 -04:00
|
|
|
"callsite": "1.0.0",
|
2024-02-20 22:58:16 -05:00
|
|
|
"copy-webpack-plugin": "4.6.0",
|
2021-07-26 22:39:41 -04:00
|
|
|
"docdash": "1.2.0",
|
2024-02-26 14:05:34 -05:00
|
|
|
"eslint": "8.57.0",
|
2024-02-24 05:06:10 -05:00
|
|
|
"eslint-config-scratch": "9.0.8",
|
2024-02-28 13:12:09 -05:00
|
|
|
"expose-loader": "1.0.3",
|
2024-02-28 13:19:05 -05:00
|
|
|
"file-loader": "6.2.0",
|
2024-02-20 14:51:05 -05:00
|
|
|
"format-message-cli": "6.2.4",
|
2024-02-20 14:56:28 -05:00
|
|
|
"husky": "8.0.3",
|
2021-07-26 22:39:41 -04:00
|
|
|
"in-publish": "2.0.1",
|
2022-05-13 18:34:34 -04:00
|
|
|
"js-md5": "0.7.3",
|
2024-02-20 15:01:39 -05:00
|
|
|
"jsdoc": "3.6.11",
|
2017-02-20 17:13:40 -05:00
|
|
|
"json": "^9.0.4",
|
2024-02-21 01:12:00 -05:00
|
|
|
"pngjs": "3.4.0",
|
2024-07-24 05:19:59 -04:00
|
|
|
"scratch-blocks": "1.1.194",
|
2024-07-24 03:43:00 -04:00
|
|
|
"scratch-l10n": "3.18.231",
|
2024-07-23 09:06:27 -04:00
|
|
|
"scratch-render-fonts": "1.0.76",
|
2024-02-23 21:22:11 -05:00
|
|
|
"scratch-semantic-release-config": "1.0.14",
|
2024-03-18 14:57:28 -04:00
|
|
|
"scratch-webpack-configuration": "1.3.0",
|
2017-09-29 15:14:25 -04:00
|
|
|
"script-loader": "0.7.2",
|
2023-01-09 13:12:55 -05:00
|
|
|
"semantic-release": "19.0.5",
|
2021-07-26 22:39:41 -04:00
|
|
|
"stats.js": "0.17.0",
|
2024-02-21 04:02:27 -05:00
|
|
|
"tap": "16.3.10",
|
2024-07-14 17:01:47 -04:00
|
|
|
"webpack": "5.93.0",
|
2024-02-28 14:26:05 -05:00
|
|
|
"webpack-cli": "4.10.0",
|
2024-02-20 15:05:28 -05:00
|
|
|
"webpack-dev-server": "3.11.3"
|
2016-03-28 12:53:44 -04:00
|
|
|
}
|
|
|
|
}
|