mirror of
https://github.com/waaraawa/ByteGrid.git
synced 2026-07-22 06:41:47 +00:00
- Change all byte offsets to hexadecimal (0x00, 0x01, 0x02...)
- Column headers: 0x00, 0x01, 0x02, 0x03...
- Row labels: 0x00, 0x10, 0x20, 0x30...
- Cell numbers: 0x00, 0x01, 0x02, 0x03...
- Legend offsets: offset: 0x00-0x03 (4 bytes)
- Bit layout mode still uses decimal for bit positions (0-7)
- Update tests to match hex format
42 lines
1.1 KiB
JSON
42 lines
1.1 KiB
JSON
{
|
|
"name": "bytegrid",
|
|
"version": "1.0.0",
|
|
"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",
|
|
"lint": "eslint . --ext .ts",
|
|
"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": "^6.17.0",
|
|
"@typescript-eslint/parser": "^6.17.0",
|
|
"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"
|
|
}
|
|
}
|