-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 786 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "javascript-for-scratch",
"version": "1.0.0",
"description": "This extension allows you to use various JavaScript features in Scratch!",
"main": "blockimports.js",
"scripts": {
"build": "esbuild scratchjsblocks/blockimports.js --bundle --outfile=dist/bundle.js",
"watch": "esbuild scratchjsblocks/blockimports.js --bundle --outfile=dist/bundle.js --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ironbill25/JavaScript-For-Scratch.git"
},
"keywords": [],
"author": "IronBill25",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ironbill25/JavaScript-For-Scratch/issues"
},
"homepage": "https://ironbill25.github.io/projects/scratchjs/index.html",
"dependencies": {
"esbuild": "^0.28.0"
}
}