Files
blockly/package.json
T
Greg Annandale 593d877504 chore(docs): fix eslint version inconsistency between packages
Ensure that the docs package utilises the same version of eslint and prettier as the blockly package.
2026-04-13 23:05:14 +01:00

37 lines
910 B
JSON

{
"name": "blockly-repo",
"version": "0.0.0",
"description": "Monorepo for blockly and related packages",
"keywords": [
"blockly"
],
"homepage": "https://blockly.com",
"bugs": {
"url": "https://github.com/RaspberryPiFoundation/blockly/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RaspberryPiFoundation/blockly.git"
},
"license": "Apache-2.0",
"author": "Raspberry Pi Foundation",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0"
},
"overrides": {
"eslint": "9.36.0",
"prettier": "3.6.2"
},
"scripts": {
"test": "npm run test --ws --if-present",
"lint": "npm run lint --ws --if-present",
"build": "npm run build --ws --if-present",
"format:check": "npm run format:check --ws --if-present"
}
}