this repo has no description
1{
2 "name": "bb26",
3 "version": "5.2.0",
4 "description": "Bijective base-26 utility library",
5 "keywords": [
6 "base 26",
7 "bijective base 26",
8 "spreadsheet",
9 "spreadsheet column",
10 "spreadsheet column letters",
11 "license plate serials"
12 ],
13 "repository": {
14 "type": "git",
15 "url": "git+https://github.com/patrik-csak/BB26.git"
16 },
17 "license": "MIT",
18 "author": "Patrik Csak <p@trikcsak.com> (https://patrikcsak.com)",
19 "sideEffects": false,
20 "type": "module",
21 "exports": {
22 ".": {
23 "types": "./distribution/index.d.ts",
24 "default": "./distribution/index.js"
25 }
26 },
27 "files": [
28 "distribution"
29 ],
30 "scripts": {
31 "_eslint": "eslint --cache --cache-strategy=content",
32 "_knip": "knip --cache",
33 "_prettier": "prettier --cache .",
34 "_typescript": "tsgo",
35 "build": "rm -fr distribution tsconfig.tsbuildinfo && npm run _typescript",
36 "format:check": "npm run _prettier -- --check",
37 "format:fix": "npm run _prettier -- --write",
38 "lint:check": "npm run _eslint",
39 "lint:fix": "npm run _eslint -- --fix",
40 "prepack": "npm run build",
41 "quality:check": "npm run format:check && npm run lint:check && npm run types:check && npm run unused:check",
42 "quality:fix": "npm run format:fix && npm run lint:fix && npm run unused:fix",
43 "test": "vitest run",
44 "test:coverage": "vitest run --coverage",
45 "types:check": "npm run _typescript -- --noEmit",
46 "unused:check": "npm run _knip",
47 "unused:fix": "npm run _knip -- --fix"
48 },
49 "devDependencies": {
50 "@e18e/eslint-plugin": "^0.3.0",
51 "@tsconfig/strictest": "^2.0.8",
52 "@typescript/native-preview": "^7.0.0-dev.20260415.1",
53 "@vitest/coverage-v8": "^4.1.4",
54 "eslint": "^10.0.3",
55 "eslint-plugin-package-json": "^0.91.0",
56 "eslint-plugin-perfectionist": "^5.8.0",
57 "knip": "^6.4.1",
58 "prettier": "^3.6.2",
59 "vitest": "^4.1.4",
60 "xo": "^2.0.2"
61 }
62}