@phroun/paged-buffer
Version:
High-performance buffer system for editing massive files with intelligent memory management and undo/redo capabilities
80 lines (79 loc) • 2.36 kB
JSON
{
"name": "@phroun/paged-buffer",
"version": "0.1.7",
"description": "High-performance buffer system for editing massive files with intelligent memory management and undo/redo capabilities",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"dev": "ts-node src/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:unit": "jest --selectProjects unit",
"test:integration": "jest --selectProjects integration",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --noEmit --watch",
"prepublishOnly": "npm run type-check && npm run build && npm test",
"docs": "typedoc",
"docs:jsdoc": "jsdoc -c jsdoc.conf.json",
"clean": "rimraf lib coverage reference docs",
"precommit": "npm run lint && npm run type-check",
"ci": "npm run lint && npm run type-check && npm run test:coverage"
},
"keywords": [
"buffer",
"file-editing",
"large-files",
"memory-management",
"undo-redo",
"marks",
"paging",
"text-editor",
"massive-files",
"typescript"
],
"author": "Jeffrey R. Day <phroun@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/phroun/paged-buffer.git"
},
"bugs": {
"url": "https://github.com/phroun/paged-buffer/issues"
},
"homepage": "https://github.com/phroun/paged-buffer#readme",
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.45.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.27.0",
"eslint-plugin-jest": "^27.2.0",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-promise": "^6.1.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"jsdoc": "^4.0.0",
"jsdoc-plugin-typescript": "^2.3.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typedoc": "^0.25.13",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.2.0"
}
}