mirror of
https://github.com/google/blockly.git
synced 2026-02-12 02:20:10 +01:00
* chore(monorepo): move all blockly files to packages/blockly * chore(monorepo): add root package.json and update gitignores * chore(monorepo): update scripts and github workflows * chore(monorepo): only try the native release for closure compiler chore: add debug info to build script chore: update google-closure-compiler chore: remove debug info
29 lines
729 B
JSON
29 lines
729 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/*"
|
|
],
|
|
"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"
|
|
}
|
|
}
|