-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.61 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.61 KB
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
{
"name": "scratch-blocks",
"version": "2.0.8",
"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/main.mjs",
"types": "./dist/types/src/index.d.ts",
"exports": {
".": {
"import": "./dist/main.mjs",
"default": "./dist/main.mjs",
"types": "./dist/types/src/index.d.ts"
}
},
"scripts": {
"build": "webpack --mode production",
"format": "prettier --write . && eslint --fix",
"prepare": "husky || true",
"start": "webpack serve --open --mode development",
"test": "echo \"Error: no test specified\" && exit 1",
"test:lint": "eslint && prettier --check ."
},
"dependencies": {
"@blockly/continuous-toolbox": "^7.0.8",
"@blockly/field-colour": "^6.0.11",
"blockly": "^12.4.1"
},
"devDependencies": {
"@commitlint/cli": "20.4.3",
"@commitlint/config-conventional": "20.4.3",
"eslint": "9.39.4",
"eslint-config-scratch": "14.0.4",
"husky": "9.1.7",
"prettier": "3.8.1",
"scratch-semantic-release-config": "4.0.1",
"semantic-release": "25.0.3",
"source-map-loader": "5.0.0",
"ts-loader": "9.5.4",
"typescript": "5.9.3",
"webpack": "5.105.4",
"webpack-cli": "6.0.1",
"webpack-dev-server": "5.2.3"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}