-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.87 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.87 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
56
57
58
59
60
61
62
63
{
"name": "scratch-blocks",
"version": "2.1.18",
"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": "vitest run",
"test:browser": "vitest run --project browser",
"test:lint": "eslint && prettier --check .",
"test:unit": "vitest run --project unit",
"test:watch": "vitest",
"watch": "webpack --mode development --watch"
},
"dependencies": {
"@blockly/continuous-toolbox": "^7.0.8",
"@blockly/field-colour": "^6.0.11",
"blockly": "^12.4.1"
},
"devDependencies": {
"@commitlint/cli": "20.5.0",
"@commitlint/config-conventional": "20.5.0",
"@vitest/browser": "4.1.5",
"@vitest/browser-playwright": "4.1.5",
"eslint": "9.39.4",
"eslint-config-scratch": "14.1.12",
"husky": "9.1.7",
"playwright": "1.59.1",
"prettier": "3.8.3",
"scratch-semantic-release-config": "4.0.1",
"semantic-release": "25.0.3",
"source-map-loader": "5.0.0",
"ts-loader": "9.5.7",
"typescript": "5.9.3",
"vitest": "4.1.5",
"webpack": "5.106.2",
"webpack-cli": "6.0.1",
"webpack-dev-server": "5.2.3"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}