-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
86 lines (86 loc) · 2.91 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
{
"name": "µcBlockly",
"version": "2.0.0",
"description": "Program microcontrollers thanks to Blockly",
"main": "index.js",
"private": true,
"scripts": {
"audit": "npm audit fix",
"build": "webpack --mode production",
"lint": "eslint ./src --ext .js --fix",
"dev": "webpack serve --open --mode development",
"update": "npm update"
},
"repository": {
"type": "git",
"url": "git+https://github.com/A-S-T-U-C-E/ucBlockly.git"
},
"author": "Sébastien Canet",
"license": "GNU GENERAL PUBLIC LICENSE Version 3 (GPLv3)",
"bugs": {
"url": "https://github.com/A-S-T-U-C-E/ucBlockly/issues"
},
"keywords": [
"blockly",
"microcontrollers"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "~8.8.0",
"@typescript-eslint/parser": "~8.8.0",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-tsdoc": "^0.3.0",
"html-webpack-plugin": "^5.6.0",
"source-map-loader": "^5.0.0",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"typedoc": "^0.26.7",
"typescript": "^5.6.2",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"dependencies": {
"@aneilmac/blockly-theme-seshat": "^1.1.1",
"@blockly/block-plus-minus": "^8.0.9",
"@blockly/block-shareable-procedures": "^5.0.9",
"@blockly/continuous-toolbox": "^6.0.9",
"@blockly/field-angle": "^5.0.9",
"@blockly/field-bitmap": "^5.0.9",
"@blockly/field-colour": "^5.0.9",
"@blockly/field-colour-hsv-sliders": "^5.0.9",
"@blockly/field-date": "^9.0.9",
"@blockly/field-dependent-dropdown": "^4.0.9",
"@blockly/field-grid-dropdown": "^5.0.9",
"@blockly/field-multilineinput": "^5.0.10",
"@blockly/field-slider": "^7.0.9",
"@blockly/keyboard-navigation": "^0.6.9",
"@blockly/plugin-modal": "^7.0.9",
"@blockly/plugin-typed-variable-modal": "^8.0.9",
"@blockly/plugin-workspace-search": "^9.1.2",
"@blockly/shadow-block-converter": "^6.0.9",
"@blockly/suggested-blocks": "^5.0.9",
"@blockly/theme-dark": "^7.0.7",
"@blockly/theme-deuteranopia": "^6.0.7",
"@blockly/theme-highcontrast": "^6.0.7",
"@blockly/theme-modern": "^6.0.7",
"@blockly/theme-tritanopia": "^6.0.7",
"@blockly/toolbox-search": "^2.0.9",
"@blockly/workspace-backpack": "^6.0.9",
"@blockly/workspace-content-highlight": "^5.0.9",
"@blockly/workspace-minimap": "^0.2.9",
"@blockly/zoom-to-fit": "^6.0.9",
"@microsoft/api-extractor": "^7.47.9",
"@mit-app-inventor/blockly-block-lexical-variables": "^2.0.3",
"@mit-app-inventor/blockly-plugin-workspace-multiselect": "^1.0.0",
"blockly": "^11.1.1",
"install": "^0.13.0",
"monaco-editor": "^0.52.0",
"monaco-editor-webpack-plugin": "^7.1.0",
"swapy": "^0.4.1"
}
}