-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 1.16 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "@turbowarp/scaffolding",
"version": "0.1.0",
"description": "Minimal Scratch project runner.",
"main": "./dist/scaffolding-min.js",
"exports": {
".": "./dist/scaffolding-min.js",
"./min": "./dist/scaffolding-min.js",
"./with-music": "./dist/scaffolding-with-music.js"
},
"scripts": {
"build": "webpack",
"prepublishOnly": "cross-env NODE_ENV=production webpack"
},
"repository": {
"type": "git",
"url": "https://github.com/TurboWarp/scaffolding.git"
},
"author": "Thomas Weber",
"license": "MPL-2.0",
"homepage": "https://github.com/TurboWarp/scaffolding",
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@turbowarp/jszip": "^3.11.1",
"@turbowarp/scratch-storage": "^0.0.0-development-202401111301-7559569",
"@turbowarp/scratch-svg-renderer": "^1.0.202407162159",
"babel-loader": "^8.3.0",
"cross-env": "^7.0.3",
"scratch-audio": "github:TurboWarp/scratch-audio#develop",
"scratch-render": "github:TurboWarp/scratch-render#develop",
"scratch-vm": "github:TurboWarp/scratch-vm#develop",
"webpack": "^4.47.0",
"webpack-cli": "^4.10.0"
}
}