-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.75 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@evex-dev/bslash",
"version": "0.1.1",
"type": "module",
"private": false,
"description": "Graphical User Interface for creating and running Scratch 3.0 projects",
"author": "Massachusetts Institute of Technology",
"license": "AGPL-3.0-only",
"homepage": "https://github.com/evex-dev/bslash",
"repository": {
"type": "git",
"url": "https://github.com/evex-dev/bslash.git"
},
"exports": {
".": {
"import": "./dist/mod.js",
"types": "./dist/types/mod.d.ts"
},
"./css": "./dist/bslash.css"
},
"files": [
"dist",
"README.md",
"LICENSE",
"TRADEMARK"
],
"scripts": {
"dev": "vite",
"build:js": "vite build",
"build:types": "tsc --project tsconfig.build.json",
"build:lib": "deno run build:js && deno run build:types",
"build:playground": "PLAYGROUND=true vite build"
},
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"redux": "^3.7.2",
"react-redux": "^5.1.2"
},
"devDependencies": {
"react-intl": "^2.9.0",
"react-contextmenu": "^2.14.0",
"react-draggable": "^3.3.2",
"react-modal": "^3.16.3",
"react-popover": "^0.5.10",
"react-responsive": "^5.0.0",
"react-style-proptype": "^3.2.2",
"react-tabs": "^2.3.1",
"react-tooltip": "^4.5.1",
"redux-throttle": "^0.1.1",
"prop-types": "^15.8.1",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"react-virtualized": "^9.22.5",
"typescript": "^5.7.2",
"@evex-dev/scratch-paint": "^0.1.1",
"@turbowarp/types": "^0.0.12",
"@types/bun": "latest",
"@vitejs/plugin-react-swc": "^3.7.2",
"esbuild": "^0.24.2",
"jest": "21.2.1",
"vite": "^6.0.6",
"xhr": "^2.6.0",
"@evex/scratch-blocks": "npm:@jsr/evex__scratch-blocks@^0.1.6",
"@microbit/microbit-universal-hex": "^0.2.2",
"balance-text": "^3.3.1",
"bowser": "^1.9.4",
"classnames": "^2.5.1",
"computed-style-to-inline-style": "^3.0.0",
"cookie": "^0.6.0",
"dapjs": "^2.3.0",
"get-user-media-promise": "^1.1.4",
"immutable": "^3.8.2",
"js-base64": "^2.6.4",
"keymirror": "^0.1.1",
"lodash.bindall": "^4.4.0",
"lodash.debounce": "^4.0.8",
"lodash.defaultsdeep": "^4.6.1",
"lodash.omit": "^4.5.0",
"lodash.throttle": "^4.1.1",
"minilog": "^3.1.0",
"omggif": "^1.0.10",
"papaparse": "^5.4.1",
"query-string": "^5.1.1",
"scratch-audio": "^2.0.36",
"scratch-l10n": "^5.0.61",
"scratch-render": "^2.0.68",
"scratch-render-fonts": "^1.0.147",
"scratch-storage": "^2.3.284",
"scratch-svg-renderer": "^3.0.30",
"scratch-vm": "^5.0.75",
"startaudiocontext": "^1.2.1",
"to-style": "^1.3.3",
"wav-encoder": "^1.3.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}