UNPKG

@phensley/cldr-types

Version:

Types shared among packages in the @phensley/cldr library

75 lines 2.25 kB
{ "name": "@phensley/cldr-types", "version": "1.12.2", "description": "Types shared among packages in the @phensley/cldr library", "main": "lib/index.js", "module": "lib-es/index.js", "types": "lib/index.d.ts", "author": "Patrick Hensley <pathensley@gmail.com>", "license": "Apache-2.0", "homepage": "https://github.com/phensley/cldr-engine/", "repository": { "type": "git", "url": "https://github.com/phensley/cldr-engine" }, "publishConfig": { "access": "public" }, "files": [ "lib/", "lib-es/" ], "dependencies": { "tslib": "^2.8.1" }, "devDependencies": { "@microsoft/api-extractor": "~7.52.3", "@types/jest": "^29.5.14", "@types/node": "^22.14.0", "@typescript-eslint/eslint-plugin": "^8.29.0", "@typescript-eslint/parser": "^8.29.0", "add": "^2.0.6", "beautify-benchmark": "^0.2.4", "benchmark": "^2.1.4", "chalk": "^4.1.2", "dependency-cruiser": "^16.10.1", "eslint": "^8.57.0", "eslint-config-prettier": "^10.1.1", "eslint-plugin-prettier": "^5.2.6", "jest": "^29.7.0", "pnpm": "^10.7.1", "prettier": "^3.5.3", "rimraf": "^6.0.1", "ts-jest": "^29.3.1", "typescript": "~5.8.3" }, "jest": { "moduleFileExtensions": [ "js", "ts", "tsx" ], "testMatch": [ "**/__tests__/**/*.test.ts" ], "transform": { "^.+\\.(ts|tsx)$": "ts-jest" } }, "scripts": { "api": "api-extractor run -c ./etc/api-extractor.json --verbose", "api:local": "pnpm run api -l", "bench:off": "ts-node __benchmarks__/", "build": "pnpm run build:cj && pnpm run build:es", "build:cj": "tsc -p ./tsconfig.json", "build:es": "tsc -p ./tsconfig.json --module esnext --outDir lib-es", "build:lint": "tsc -p ./tsconfig.lint.json", "build:watch": "tsc -p ./tsconfig.json -w --preserveWatchOutput", "clean": "rimraf ./lib ./lib-es ./.scratch", "clean:full": "pnpm run clean && rimraf ./node_modules", "coverage": "jest --coverage --runInBand --no-cache --coverageReporters=html", "lint": "eslint -c .eslintrc.js --ext .ts src", "prepublish": "pnpm run build", "test:watch": "jest --watch --coverage --coverageReporters=html" } }