123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- {
- "name": "@thednp/shorty",
- "version": "2.0.10",
- "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.10.1",
- "@vitest/browser": "^2.1.6",
- "@vitest/coverage-istanbul": "^2.1.6",
- "@vitest/ui": "^2.1.6",
- "playwright": "^1.49.0",
- "typescript": "^5.7.2",
- "vite": "^5.4.11",
- "vite-plugin-dts": "^4.3.0",
- "vite-plugin-strip-comments": "^0.0.4",
- "vitest": "^2.1.6"
- },
- "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"
- }
- }
|