fugue
Version:
Fractional indexing without conflicts.
64 lines • 1.56 kB
JSON
{
"name": "fugue",
"version": "2.0.3",
"description": "Fractional indexing without conflicts.",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/0xcadams/fugue.git"
},
"keywords": [
"fractional indexing",
"sync",
"local-first",
"fugue",
"database",
"typescript",
"ts"
],
"author": "0xcadams",
"license": "MIT",
"homepage": "https://github.com/0xcadams/fugue",
"bugs": {
"url": "https://github.com/0xcadams/fugue/issues"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^11.2.0",
"@types/node": "^24.0.6",
"@vitest/coverage-v8": "3.2.4",
"@vitest/ui": "^3.2.4",
"esbuild": "^0.25.5",
"fractional-indexing": "^3.2.0",
"jsdom": "^26.1.0",
"prettier": "^3.6.2",
"size-limit": "^11.2.0",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
},
"size-limit": [
{
"path": "dist/index.js"
}
],
"scripts": {
"clean": "rm -rf dist node_modules coverage",
"build": "tsup src/index.ts --format cjs,esm --dts",
"release": "pnpm run build && pnpm publish",
"test": "vitest run --typecheck --coverage",
"test:types": "cd tests && tsc --noEmit",
"test:bench": "vitest bench",
"test:ui": "vitest --ui",
"size": "size-limit"
}
}