forked from scratchfoundation/scratch-blocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 934 Bytes
/
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
{
"name": "scratch-blocks",
"version": "0.1.5",
"type": "module",
"description": "Scratch Blocks is a library for building creative computing interfaces.",
"author": "Massachusetts Institute of Technology",
"license": "Apache-2.0",
"homepage": "https://github.com/scratchfoundation/scratch-blocks#readme",
"repository": {
"type": "git",
"url": "https://github.com/scratchfoundation/scratch-blocks.git"
},
"main": "./dist/vertical.js",
"browser": "./shim/vertical.js",
"scripts": {
"dev": "vite",
"b": "bun scripts/core_patch.ts",
"build": "bun b && bun scripts/build.ts",
"publish": "jsr publish",
"build:page": "bun b && vite build"
},
"dependencies": {
"scratch-l10n": "^3.18.3"
},
"devDependencies": {
"@types/bun": "^1.1.14",
"vite": "^6.0.3",
"jsr": "^0.13.2"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}