this repo has no description
at main 48 lines 1.1 kB view raw
1{ 2 "name": "tagged-string", 3 "version": "1.1.0", 4 "description": "Extract structured data from strings using tag-based syntax", 5 "license": "MIT", 6 "author": "tbeseda", 7 "repository": { 8 "type": "git", 9 "url": "git+https://github.com/tbeseda/tagged-string.git" 10 }, 11 "type": "module", 12 "main": "./dist/index.js", 13 "types": "./dist/index.d.ts", 14 "exports": { 15 ".": { 16 "types": "./dist/index.d.ts", 17 "default": "./dist/index.js" 18 }, 19 "./src": { 20 "types": "./src/index.ts", 21 "default": "./src/index.ts" 22 } 23 }, 24 "files": [ 25 "dist", 26 "src" 27 ], 28 "scripts": { 29 "build": "tsup", 30 "typecheck": "tsc", 31 "prepublishOnly": "npm run build", 32 "lint": "biome check --write", 33 "pretest": "npm run typecheck", 34 "test": "node --test 'test/**/*.test.ts'", 35 "posttest": "npm run lint", 36 "examples": "node src/examples.ts" 37 }, 38 "engines": { 39 "node": ">=24.0.0" 40 }, 41 "devDependencies": { 42 "@biomejs/biome": "2.3.5", 43 "@types/node": "^24.10.0", 44 "fast-check": "^4.3.0", 45 "tsup": "^8.5.0", 46 "typescript": "^5.7.2" 47 } 48}