UNPKG

@phensley/cldr-types

Version:

Types shared among packages in the @phensley/cldr library

42 lines 1.32 kB
{ "name": "@phensley/cldr-types", "version": "1.13.1", "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" }, "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": "vitest run --coverage", "lint": "eslint src", "prepublish": "pnpm run build", "test": "vitest --run", "test:watch": "vitest" } }