mirror of
https://github.com/waaraawa/ByteGrid.git
synced 2026-07-22 16:30:25 +00:00
44 lines
1.2 KiB
JSON
44 lines
1.2 KiB
JSON
{
|
|
"name": "bytegrid",
|
|
"version": "1.0.1",
|
|
"description": "Binary data and C struct memory layout visualization for Obsidian",
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"build": "npm run build --workspaces",
|
|
"test": "npm run test --workspaces --if-present",
|
|
"lint": "eslint . --ext .ts",
|
|
"check:scorecard": "node scripts/check-scorecard.mjs",
|
|
"format": "prettier --write \"**/*.{ts,json,md}\"",
|
|
"format:check": "prettier --check \"**/*.{ts,json,md}\"",
|
|
"clean": "rm -rf packages/*/dist packages/*/node_modules node_modules"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"obsidian-plugin",
|
|
"binary",
|
|
"visualization",
|
|
"memory-layout",
|
|
"struct"
|
|
],
|
|
"author": "ByteGrid Contributors",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.11",
|
|
"@types/node": "^20.10.6",
|
|
"@typescript-eslint/eslint-plugin": "^8.61.1",
|
|
"@typescript-eslint/parser": "^8.61.1",
|
|
"esbuild": "^0.28.1",
|
|
"eslint": "^8.56.0",
|
|
"jest": "^29.7.0",
|
|
"prettier": "^3.1.1",
|
|
"ts-jest": "^29.1.1",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0",
|
|
"npm": ">=9.0.0"
|
|
}
|
|
}
|