52 lines
1.4 KiB
JSON
52 lines
1.4 KiB
JSON
{
|
|
"name": "io-actions",
|
|
"version": "1.0.0",
|
|
"description": "A Blockly tooling project",
|
|
"type": "module",
|
|
"imports": {
|
|
"#app/*.js": "./app/*.js",
|
|
"#app/*.json": "./app/*.json",
|
|
"#src/*.js": "./src/*.js",
|
|
"#test/*.js": "./test/*.js"
|
|
},
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "node dev_server.js",
|
|
|
|
"test": "node --test",
|
|
"test-watch": "node --test --watch",
|
|
"test-snapshots": "node --test test/app/blocks/snapshots/block_snapshots_test.js",
|
|
"test-update-snapshots": "node --test --test-update-snapshots test/app/blocks/snapshots/block_snapshots_test.js",
|
|
"lint": "eslint src/",
|
|
"lint-export": "eslint export/",
|
|
|
|
"export:app": "node export.js app",
|
|
"export:block-images": "node export.js blockImages",
|
|
|
|
"docs:export": "node export.js docs",
|
|
"docs:dev": "vitepress dev docs",
|
|
"docs:build": "vitepress build docs",
|
|
"docs:preview": "vitepress preview docs"
|
|
},
|
|
"keywords": [
|
|
"blockly"
|
|
],
|
|
"author": "Loren Norman",
|
|
"license": "",
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.2.0",
|
|
"chai": "^5.1.2",
|
|
"cypress": "^14.5.3",
|
|
"eslint": "^8.57.0",
|
|
"esm-reload": "^1.0.1",
|
|
"glob": "^10.4.2",
|
|
"globals": "^15.2.0",
|
|
"vite": "^6.3.5",
|
|
"vitepress": "^1.6.3"
|
|
},
|
|
"dependencies": {
|
|
"@blockly/theme-modern": "^5.0.5",
|
|
"blockly": "^10.4.3",
|
|
"lodash-es": "^4.17.21"
|
|
}
|
|
}
|