basant307/AI_Governance_Project
048
1{2 "name": "index-to-position",3 "version": "1.1.0",4 "description": "Convert a string index to its line and column position",5 "license": "MIT",6 "repository": "sindresorhus/index-to-position",7 "funding": "https://github.com/sponsors/sindresorhus",8 "author": {9 "name": "Sindre Sorhus",10 "email": "sindresorhus@gmail.com",11 "url": "https://sindresorhus.com"12 },13 "type": "module",14 "exports": {15 "types": "./index.d.ts",16 "default": "./index.js"17 },18 "sideEffects": false,19 "engines": {20 "node": ">=18"21 },22 "scripts": {23 "test": "xo && ava && tsc index.d.ts"24 },25 "files": [26 "index.js",27 "index.d.ts"28 ],29 "keywords": [30 "index",31 "position",32 "line",33 "column",34 "text",35 "coordinate",36 "string",37 "character",38 "line number",39 "column number",40 "location"41 ],42 "devDependencies": {43 "ava": "^5.3.1",44 "typescript": "^5.2.2",45 "xo": "^0.56.0"46 }47}48 