@thednp/shorty
Version:
TypeScript shorties for the web
64 lines • 1.75 kB
JSON
{
"name": "@thednp/shorty",
"version": "2.0.11",
"description": "TypeScript shorties for the web",
"source": "./src/index.ts",
"main": "./dist/shorty.js",
"module": "./dist/shorty.mjs",
"exports": {
".": {
"types": "./dist/shorty.d.ts",
"require": "./dist/shorty.cjs",
"import": "./dist/shorty.mjs"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thednp/shorty.git"
},
"keywords": [
"shorty",
"javascript",
"typescript"
],
"author": "thednp",
"license": "MIT",
"bugs": {
"url": "https://github.com/thednp/shorty/issues"
},
"homepage": "https://github.com/thednp/shorty",
"devDependencies": {
"@types/node": "^22.15.23",
"@vitest/browser": "^3.1.4",
"@vitest/coverage-istanbul": "^3.1.4",
"@vitest/ui": "^3.1.4",
"playwright": "^1.52.0",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-strip-comments": "^0.0.5",
"vitest": "^3.1.4"
},
"packageManager": "pnpm@8.6.12",
"engines": {
"node": ">=16",
"pnpm": ">=8.6.0"
},
"scripts": {
"pre-test": "pnpm clean-coverage",
"badges": "npx -p dependency-version-badge update-badge typescript vitest vite",
"test": "pnpm pre-test && vitest --config vitest.config.mts",
"test-ui": "pnpm pre-test && vitest --config vitest.config-ui.mts",
"clean-coverage": "rm -rf coverage .nyc_output",
"format": "deno fmt src",
"lint": "pnpm lint:ts && pnpm check:ts",
"lint:ts": "deno lint src",
"fix:ts": "deno lint src --fix",
"check:ts": "tsc -noEmit",
"build": "vite build"
}
}