Changeset 79a0317 for imaps-frontend/node_modules/@jridgewell
- Timestamp:
- 01/21/25 03:08:24 (3 days ago)
- Branches:
- main
- Parents:
- 0c6b92a
- Location:
- imaps-frontend/node_modules/@jridgewell
- Files:
-
- 10 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/@jridgewell/gen-mapping/package.json
r0c6b92a r79a0317 1 1 { 2 "name": "@jridgewell/gen-mapping", 3 "version": "0.3.5", 2 "_from": "@jridgewell/gen-mapping@^0.3.5", 3 "_id": "@jridgewell/gen-mapping@0.3.8", 4 "_inBundle": false, 5 "_integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", 6 "_location": "/@jridgewell/gen-mapping", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "range", 10 "registry": true, 11 "raw": "@jridgewell/gen-mapping@^0.3.5", 12 "name": "@jridgewell/gen-mapping", 13 "escapedName": "@jridgewell%2fgen-mapping", 14 "scope": "@jridgewell", 15 "rawSpec": "^0.3.5", 16 "saveSpec": null, 17 "fetchSpec": "^0.3.5" 18 }, 19 "_requiredBy": [ 20 "/@ampproject/remapping", 21 "/@babel/generator" 22 ], 23 "_resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", 24 "_shasum": "4f0e06362e01362f823d348f1872b08f666d8142", 25 "_spec": "@jridgewell/gen-mapping@^0.3.5", 26 "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/@ampproject/remapping", 27 "author": { 28 "name": "Justin Ridgewell", 29 "email": "justin@ridgewell.name" 30 }, 31 "bugs": { 32 "url": "https://github.com/jridgewell/gen-mapping/issues" 33 }, 34 "bundleDependencies": false, 35 "dependencies": { 36 "@jridgewell/set-array": "^1.2.1", 37 "@jridgewell/sourcemap-codec": "^1.4.10", 38 "@jridgewell/trace-mapping": "^0.3.24" 39 }, 40 "deprecated": false, 4 41 "description": "Generate source maps", 5 "keywords": [6 "source",7 "map"8 ],9 "author": "Justin Ridgewell <justin@ridgewell.name>",10 "license": "MIT",11 "repository": "https://github.com/jridgewell/gen-mapping",12 "main": "dist/gen-mapping.umd.js",13 "module": "dist/gen-mapping.mjs",14 "types": "dist/types/gen-mapping.d.ts",15 "exports": {16 ".": [17 {18 "types": "./dist/types/gen-mapping.d.ts",19 "browser": "./dist/gen-mapping.umd.js",20 "require": "./dist/gen-mapping.umd.js",21 "import": "./dist/gen-mapping.mjs"22 },23 "./dist/gen-mapping.umd.js"24 ],25 "./package.json": "./package.json"26 },27 "files": [28 "dist"29 ],30 "engines": {31 "node": ">=6.0.0"32 },33 "scripts": {34 "benchmark": "run-s build:rollup benchmark:*",35 "benchmark:install": "cd benchmark && npm install",36 "benchmark:only": "node benchmark/index.mjs",37 "prebuild": "rm -rf dist",38 "build": "run-s -n build:*",39 "build:rollup": "rollup -c rollup.config.js",40 "build:ts": "tsc --project tsconfig.build.json",41 "lint": "run-s -n lint:*",42 "lint:prettier": "npm run test:lint:prettier -- --write",43 "lint:ts": "npm run test:lint:ts -- --fix",44 "test": "run-s -n test:lint test:only",45 "test:debug": "mocha --inspect-brk",46 "test:lint": "run-s -n test:lint:*",47 "test:lint:prettier": "prettier --check '{src,test}/**/*.ts'",48 "test:lint:ts": "eslint '{src,test}/**/*.ts'",49 "test:only": "c8 mocha",50 "test:watch": "mocha --watch",51 "prepublishOnly": "npm run preversion",52 "preversion": "run-s test build"53 },54 42 "devDependencies": { 55 43 "@rollup/plugin-typescript": "8.3.2", … … 69 57 "typescript": "4.6.3" 70 58 }, 71 "dependencies": { 72 "@jridgewell/set-array": "^1.2.1", 73 "@jridgewell/sourcemap-codec": "^1.4.10", 74 "@jridgewell/trace-mapping": "^0.3.24" 75 } 59 "engines": { 60 "node": ">=6.0.0" 61 }, 62 "exports": { 63 ".": [ 64 { 65 "types": "./dist/types/gen-mapping.d.ts", 66 "browser": "./dist/gen-mapping.umd.js", 67 "require": "./dist/gen-mapping.umd.js", 68 "import": "./dist/gen-mapping.mjs" 69 }, 70 "./dist/gen-mapping.umd.js" 71 ], 72 "./package.json": "./package.json" 73 }, 74 "files": [ 75 "dist" 76 ], 77 "homepage": "https://github.com/jridgewell/gen-mapping#readme", 78 "keywords": [ 79 "source", 80 "map" 81 ], 82 "license": "MIT", 83 "main": "dist/gen-mapping.umd.js", 84 "module": "dist/gen-mapping.mjs", 85 "name": "@jridgewell/gen-mapping", 86 "repository": { 87 "type": "git", 88 "url": "git+https://github.com/jridgewell/gen-mapping.git" 89 }, 90 "scripts": { 91 "benchmark": "run-s build:rollup benchmark:*", 92 "benchmark:install": "cd benchmark && npm install", 93 "benchmark:only": "node benchmark/index.mjs", 94 "build": "run-s -n build:*", 95 "build:rollup": "rollup -c rollup.config.js", 96 "build:ts": "tsc --project tsconfig.build.json", 97 "lint": "run-s -n lint:*", 98 "lint:prettier": "npm run test:lint:prettier -- --write", 99 "lint:ts": "npm run test:lint:ts -- --fix", 100 "prebuild": "rm -rf dist", 101 "prepublishOnly": "npm run preversion", 102 "preversion": "run-s test build", 103 "test": "run-s -n test:lint test:only", 104 "test:debug": "mocha --inspect-brk", 105 "test:lint": "run-s -n test:lint:*", 106 "test:lint:prettier": "prettier --check '{src,test}/**/*.ts'", 107 "test:lint:ts": "eslint '{src,test}/**/*.ts'", 108 "test:only": "c8 mocha", 109 "test:watch": "mocha --watch" 110 }, 111 "types": "dist/types/gen-mapping.d.ts", 112 "version": "0.3.8" 76 113 } -
imaps-frontend/node_modules/@jridgewell/resolve-uri/package.json
r0c6b92a r79a0317 1 1 { 2 "name": "@jridgewell/resolve-uri", 3 "version": "3.1.2", 2 "_from": "@jridgewell/resolve-uri@^3.1.0", 3 "_id": "@jridgewell/resolve-uri@3.1.2", 4 "_inBundle": false, 5 "_integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 6 "_location": "/@jridgewell/resolve-uri", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "range", 10 "registry": true, 11 "raw": "@jridgewell/resolve-uri@^3.1.0", 12 "name": "@jridgewell/resolve-uri", 13 "escapedName": "@jridgewell%2fresolve-uri", 14 "scope": "@jridgewell", 15 "rawSpec": "^3.1.0", 16 "saveSpec": null, 17 "fetchSpec": "^3.1.0" 18 }, 19 "_requiredBy": [ 20 "/@jridgewell/trace-mapping" 21 ], 22 "_resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 23 "_shasum": "7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6", 24 "_spec": "@jridgewell/resolve-uri@^3.1.0", 25 "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/@jridgewell/trace-mapping", 26 "author": { 27 "name": "Justin Ridgewell", 28 "email": "justin@ridgewell.name" 29 }, 30 "bugs": { 31 "url": "https://github.com/jridgewell/resolve-uri/issues" 32 }, 33 "bundleDependencies": false, 34 "deprecated": false, 4 35 "description": "Resolve a URI relative to an optional base URI", 5 "keywords": [ 6 "resolve", 7 "uri", 8 "url", 9 "path" 10 ], 11 "author": "Justin Ridgewell <justin@ridgewell.name>", 12 "license": "MIT", 13 "repository": "https://github.com/jridgewell/resolve-uri", 14 "main": "dist/resolve-uri.umd.js", 15 "module": "dist/resolve-uri.mjs", 16 "types": "dist/types/resolve-uri.d.ts", 36 "devDependencies": { 37 "@jridgewell/resolve-uri-latest": "npm:@jridgewell/resolve-uri@*", 38 "@rollup/plugin-typescript": "8.3.0", 39 "@typescript-eslint/eslint-plugin": "5.10.0", 40 "@typescript-eslint/parser": "5.10.0", 41 "c8": "7.11.0", 42 "eslint": "8.7.0", 43 "eslint-config-prettier": "8.3.0", 44 "mocha": "9.2.0", 45 "npm-run-all": "4.1.5", 46 "prettier": "2.5.1", 47 "rollup": "2.66.0", 48 "typescript": "4.5.5" 49 }, 50 "engines": { 51 "node": ">=6.0.0" 52 }, 17 53 "exports": { 18 54 ".": [ … … 30 66 "dist" 31 67 ], 32 "engines": { 33 "node": ">=6.0.0" 68 "homepage": "https://github.com/jridgewell/resolve-uri#readme", 69 "keywords": [ 70 "resolve", 71 "uri", 72 "url", 73 "path" 74 ], 75 "license": "MIT", 76 "main": "dist/resolve-uri.umd.js", 77 "module": "dist/resolve-uri.mjs", 78 "name": "@jridgewell/resolve-uri", 79 "repository": { 80 "type": "git", 81 "url": "git+https://github.com/jridgewell/resolve-uri.git" 34 82 }, 35 83 "scripts": { 36 "prebuild": "rm -rf dist",37 84 "build": "run-s -n build:*", 38 85 "build:rollup": "rollup -c rollup.config.js", … … 41 88 "lint:prettier": "npm run test:lint:prettier -- --write", 42 89 "lint:ts": "npm run test:lint:ts -- --fix", 90 "prebuild": "rm -rf dist", 91 "prepublishOnly": "npm run preversion", 43 92 "pretest": "run-s build:rollup", 93 "preversion": "run-s test build", 44 94 "test": "run-s -n test:lint test:only", 95 "test:coverage": "c8 mocha", 45 96 "test:debug": "mocha --inspect-brk", 46 97 "test:lint": "run-s -n test:lint:*", … … 48 99 "test:lint:ts": "eslint '{src,test}/**/*.ts'", 49 100 "test:only": "mocha", 50 "test:coverage": "c8 mocha", 51 "test:watch": "mocha --watch", 52 "prepublishOnly": "npm run preversion", 53 "preversion": "run-s test build" 101 "test:watch": "mocha --watch" 54 102 }, 55 "devDependencies": { 56 "@jridgewell/resolve-uri-latest": "npm:@jridgewell/resolve-uri@*", 57 "@rollup/plugin-typescript": "8.3.0", 58 "@typescript-eslint/eslint-plugin": "5.10.0", 59 "@typescript-eslint/parser": "5.10.0", 60 "c8": "7.11.0", 61 "eslint": "8.7.0", 62 "eslint-config-prettier": "8.3.0", 63 "mocha": "9.2.0", 64 "npm-run-all": "4.1.5", 65 "prettier": "2.5.1", 66 "rollup": "2.66.0", 67 "typescript": "4.5.5" 68 } 103 "types": "dist/types/resolve-uri.d.ts", 104 "version": "3.1.2" 69 105 } -
imaps-frontend/node_modules/@jridgewell/set-array/package.json
r0c6b92a r79a0317 1 1 { 2 "name": "@jridgewell/set-array", 3 "version": "1.2.1", 2 "_from": "@jridgewell/set-array@^1.2.1", 3 "_id": "@jridgewell/set-array@1.2.1", 4 "_inBundle": false, 5 "_integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", 6 "_location": "/@jridgewell/set-array", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "range", 10 "registry": true, 11 "raw": "@jridgewell/set-array@^1.2.1", 12 "name": "@jridgewell/set-array", 13 "escapedName": "@jridgewell%2fset-array", 14 "scope": "@jridgewell", 15 "rawSpec": "^1.2.1", 16 "saveSpec": null, 17 "fetchSpec": "^1.2.1" 18 }, 19 "_requiredBy": [ 20 "/@jridgewell/gen-mapping" 21 ], 22 "_resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", 23 "_shasum": "558fb6472ed16a4c850b889530e6b36438c49280", 24 "_spec": "@jridgewell/set-array@^1.2.1", 25 "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/@jridgewell/gen-mapping", 26 "author": { 27 "name": "Justin Ridgewell", 28 "email": "justin@ridgewell.name" 29 }, 30 "bugs": { 31 "url": "https://github.com/jridgewell/set-array/issues" 32 }, 33 "bundleDependencies": false, 34 "deprecated": false, 4 35 "description": "Like a Set, but provides the index of the `key` in the backing array", 5 "keywords": [], 6 "author": "Justin Ridgewell <justin@ridgewell.name>", 7 "license": "MIT", 8 "repository": "https://github.com/jridgewell/set-array", 9 "main": "dist/set-array.umd.js", 10 "module": "dist/set-array.mjs", 11 "typings": "dist/types/set-array.d.ts", 36 "devDependencies": { 37 "@rollup/plugin-typescript": "8.3.0", 38 "@types/mocha": "9.1.1", 39 "@types/node": "17.0.29", 40 "@typescript-eslint/eslint-plugin": "5.10.0", 41 "@typescript-eslint/parser": "5.10.0", 42 "c8": "7.11.0", 43 "eslint": "8.7.0", 44 "eslint-config-prettier": "8.3.0", 45 "mocha": "9.2.0", 46 "npm-run-all": "4.1.5", 47 "prettier": "2.5.1", 48 "rollup": "2.66.0", 49 "tsx": "4.7.1", 50 "typescript": "4.5.5" 51 }, 52 "engines": { 53 "node": ">=6.0.0" 54 }, 12 55 "exports": { 13 56 ".": [ … … 25 68 "dist" 26 69 ], 27 "engines": { 28 "node": ">=6.0.0" 70 "homepage": "https://github.com/jridgewell/set-array#readme", 71 "keywords": [], 72 "license": "MIT", 73 "main": "dist/set-array.umd.js", 74 "module": "dist/set-array.mjs", 75 "name": "@jridgewell/set-array", 76 "repository": { 77 "type": "git", 78 "url": "git+https://github.com/jridgewell/set-array.git" 29 79 }, 30 80 "scripts": { 31 "prebuild": "rm -rf dist",32 81 "build": "run-s -n build:*", 33 82 "build:rollup": "rollup -c rollup.config.js", … … 36 85 "lint:prettier": "npm run test:lint:prettier -- --write", 37 86 "lint:ts": "npm run test:lint:ts -- --fix", 87 "prebuild": "rm -rf dist", 88 "prepublishOnly": "npm run preversion", 89 "preversion": "run-s test build", 38 90 "test": "run-s -n test:lint test:only", 91 "test:coverage": "c8 mocha", 39 92 "test:debug": "mocha --inspect-brk", 40 93 "test:lint": "run-s -n test:lint:*", … … 42 95 "test:lint:ts": "eslint '{src,test}/**/*.ts'", 43 96 "test:only": "mocha", 44 "test:coverage": "c8 mocha", 45 "test:watch": "mocha --watch", 46 "prepublishOnly": "npm run preversion", 47 "preversion": "run-s test build" 97 "test:watch": "mocha --watch" 48 98 }, 49 "devDependencies": { 50 "@rollup/plugin-typescript": "8.3.0", 51 "@types/mocha": "9.1.1", 52 "@types/node": "17.0.29", 53 "@typescript-eslint/eslint-plugin": "5.10.0", 54 "@typescript-eslint/parser": "5.10.0", 55 "c8": "7.11.0", 56 "eslint": "8.7.0", 57 "eslint-config-prettier": "8.3.0", 58 "mocha": "9.2.0", 59 "npm-run-all": "4.1.5", 60 "prettier": "2.5.1", 61 "rollup": "2.66.0", 62 "tsx": "4.7.1", 63 "typescript": "4.5.5" 64 } 99 "typings": "dist/types/set-array.d.ts", 100 "version": "1.2.1" 65 101 } -
imaps-frontend/node_modules/@jridgewell/sourcemap-codec/package.json
r0c6b92a r79a0317 1 1 { 2 "name": "@jridgewell/sourcemap-codec", 3 "version": "1.5.0", 2 "_from": "@jridgewell/sourcemap-codec@^1.4.10", 3 "_id": "@jridgewell/sourcemap-codec@1.5.0", 4 "_inBundle": false, 5 "_integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", 6 "_location": "/@jridgewell/sourcemap-codec", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "range", 10 "registry": true, 11 "raw": "@jridgewell/sourcemap-codec@^1.4.10", 12 "name": "@jridgewell/sourcemap-codec", 13 "escapedName": "@jridgewell%2fsourcemap-codec", 14 "scope": "@jridgewell", 15 "rawSpec": "^1.4.10", 16 "saveSpec": null, 17 "fetchSpec": "^1.4.10" 18 }, 19 "_requiredBy": [ 20 "/@jridgewell/gen-mapping", 21 "/@jridgewell/trace-mapping" 22 ], 23 "_resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", 24 "_shasum": "3188bcb273a414b0d215fd22a58540b989b9409a", 25 "_spec": "@jridgewell/sourcemap-codec@^1.4.10", 26 "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/@jridgewell/gen-mapping", 27 "author": { 28 "name": "Rich Harris" 29 }, 30 "bugs": { 31 "url": "https://github.com/jridgewell/sourcemap-codec/issues" 32 }, 33 "bundleDependencies": false, 34 "deprecated": false, 4 35 "description": "Encode/decode sourcemap mappings", 5 "keywords": [6 "sourcemap",7 "vlq"8 ],9 "main": "dist/sourcemap-codec.umd.js",10 "module": "dist/sourcemap-codec.mjs",11 "types": "dist/types/sourcemap-codec.d.ts",12 "files": [13 "dist"14 ],15 "exports": {16 ".": [17 {18 "types": "./dist/types/sourcemap-codec.d.ts",19 "browser": "./dist/sourcemap-codec.umd.js",20 "require": "./dist/sourcemap-codec.umd.js",21 "import": "./dist/sourcemap-codec.mjs"22 },23 "./dist/sourcemap-codec.umd.js"24 ],25 "./package.json": "./package.json"26 },27 "scripts": {28 "benchmark": "run-s build:rollup benchmark:*",29 "benchmark:install": "cd benchmark && npm install",30 "benchmark:only": "node --expose-gc benchmark/index.js",31 "build": "run-s -n build:*",32 "build:rollup": "rollup -c rollup.config.js",33 "build:ts": "tsc --project tsconfig.build.json",34 "lint": "run-s -n lint:*",35 "lint:prettier": "npm run test:lint:prettier -- --write",36 "lint:ts": "npm run test:lint:ts -- --fix",37 "prebuild": "rm -rf dist",38 "prepublishOnly": "npm run preversion",39 "preversion": "run-s test build",40 "test": "run-s -n test:lint test:only",41 "test:debug": "mocha --inspect-brk",42 "test:lint": "run-s -n test:lint:*",43 "test:lint:prettier": "prettier --check '{src,test}/**/*.ts'",44 "test:lint:ts": "eslint '{src,test}/**/*.ts'",45 "test:only": "mocha",46 "test:coverage": "c8 mocha",47 "test:watch": "mocha --watch"48 },49 "repository": {50 "type": "git",51 "url": "git+https://github.com/jridgewell/sourcemap-codec.git"52 },53 "author": "Rich Harris",54 "license": "MIT",55 36 "devDependencies": { 56 37 "@rollup/plugin-typescript": "8.3.0", … … 72 53 "tsx": "4.7.1", 73 54 "typescript": "4.5.4" 74 } 55 }, 56 "exports": { 57 ".": [ 58 { 59 "types": "./dist/types/sourcemap-codec.d.ts", 60 "browser": "./dist/sourcemap-codec.umd.js", 61 "require": "./dist/sourcemap-codec.umd.js", 62 "import": "./dist/sourcemap-codec.mjs" 63 }, 64 "./dist/sourcemap-codec.umd.js" 65 ], 66 "./package.json": "./package.json" 67 }, 68 "files": [ 69 "dist" 70 ], 71 "homepage": "https://github.com/jridgewell/sourcemap-codec#readme", 72 "keywords": [ 73 "sourcemap", 74 "vlq" 75 ], 76 "license": "MIT", 77 "main": "dist/sourcemap-codec.umd.js", 78 "module": "dist/sourcemap-codec.mjs", 79 "name": "@jridgewell/sourcemap-codec", 80 "repository": { 81 "type": "git", 82 "url": "git+https://github.com/jridgewell/sourcemap-codec.git" 83 }, 84 "scripts": { 85 "benchmark": "run-s build:rollup benchmark:*", 86 "benchmark:install": "cd benchmark && npm install", 87 "benchmark:only": "node --expose-gc benchmark/index.js", 88 "build": "run-s -n build:*", 89 "build:rollup": "rollup -c rollup.config.js", 90 "build:ts": "tsc --project tsconfig.build.json", 91 "lint": "run-s -n lint:*", 92 "lint:prettier": "npm run test:lint:prettier -- --write", 93 "lint:ts": "npm run test:lint:ts -- --fix", 94 "prebuild": "rm -rf dist", 95 "prepublishOnly": "npm run preversion", 96 "preversion": "run-s test build", 97 "test": "run-s -n test:lint test:only", 98 "test:coverage": "c8 mocha", 99 "test:debug": "mocha --inspect-brk", 100 "test:lint": "run-s -n test:lint:*", 101 "test:lint:prettier": "prettier --check '{src,test}/**/*.ts'", 102 "test:lint:ts": "eslint '{src,test}/**/*.ts'", 103 "test:only": "mocha", 104 "test:watch": "mocha --watch" 105 }, 106 "types": "dist/types/sourcemap-codec.d.ts", 107 "version": "1.5.0" 75 108 } -
imaps-frontend/node_modules/@jridgewell/trace-mapping/package.json
r0c6b92a r79a0317 1 1 { 2 "name": "@jridgewell/trace-mapping", 3 "version": "0.3.25", 2 "_from": "@jridgewell/trace-mapping@^0.3.24", 3 "_id": "@jridgewell/trace-mapping@0.3.25", 4 "_inBundle": false, 5 "_integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", 6 "_location": "/@jridgewell/trace-mapping", 7 "_phantomChildren": {}, 8 "_requested": { 9 "type": "range", 10 "registry": true, 11 "raw": "@jridgewell/trace-mapping@^0.3.24", 12 "name": "@jridgewell/trace-mapping", 13 "escapedName": "@jridgewell%2ftrace-mapping", 14 "scope": "@jridgewell", 15 "rawSpec": "^0.3.24", 16 "saveSpec": null, 17 "fetchSpec": "^0.3.24" 18 }, 19 "_requiredBy": [ 20 "/@ampproject/remapping", 21 "/@babel/generator", 22 "/@jridgewell/gen-mapping" 23 ], 24 "_resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", 25 "_shasum": "15f190e98895f3fc23276ee14bc76b675c2e50f0", 26 "_spec": "@jridgewell/trace-mapping@^0.3.24", 27 "_where": "/home/stevetosak/Proekt/IMaps/imaps-frontend/node_modules/@ampproject/remapping", 28 "author": { 29 "name": "Justin Ridgewell", 30 "email": "justin@ridgewell.name" 31 }, 32 "bugs": { 33 "url": "https://github.com/jridgewell/trace-mapping/issues" 34 }, 35 "bundleDependencies": false, 36 "dependencies": { 37 "@jridgewell/resolve-uri": "^3.1.0", 38 "@jridgewell/sourcemap-codec": "^1.4.14" 39 }, 40 "deprecated": false, 4 41 "description": "Trace the original position through a source map", 5 "keywords": [ 6 "source", 7 "map" 8 ], 9 "main": "dist/trace-mapping.umd.js", 10 "module": "dist/trace-mapping.mjs", 11 "types": "dist/types/trace-mapping.d.ts", 12 "files": [ 13 "dist" 14 ], 42 "devDependencies": { 43 "@rollup/plugin-typescript": "11.1.6", 44 "@types/mocha": "10.0.6", 45 "@types/node": "20.11.20", 46 "@typescript-eslint/eslint-plugin": "6.18.1", 47 "@typescript-eslint/parser": "6.18.1", 48 "benchmark": "2.1.4", 49 "c8": "9.0.0", 50 "esbuild": "0.19.11", 51 "eslint": "8.56.0", 52 "eslint-config-prettier": "9.1.0", 53 "eslint-plugin-no-only-tests": "3.1.0", 54 "mocha": "10.3.0", 55 "npm-run-all": "4.1.5", 56 "prettier": "3.1.1", 57 "rollup": "4.9.4", 58 "tsx": "4.7.0", 59 "typescript": "5.3.3" 60 }, 15 61 "exports": { 16 62 ".": [ … … 25 71 "./package.json": "./package.json" 26 72 }, 27 "author": "Justin Ridgewell <justin@ridgewell.name>", 73 "files": [ 74 "dist" 75 ], 76 "homepage": "https://github.com/jridgewell/trace-mapping#readme", 77 "keywords": [ 78 "source", 79 "map" 80 ], 81 "license": "MIT", 82 "main": "dist/trace-mapping.umd.js", 83 "module": "dist/trace-mapping.mjs", 84 "name": "@jridgewell/trace-mapping", 28 85 "repository": { 29 86 "type": "git", 30 87 "url": "git+https://github.com/jridgewell/trace-mapping.git" 31 88 }, 32 "license": "MIT",33 89 "scripts": { 34 90 "benchmark": "run-s build:rollup benchmark:*", … … 52 108 "test:watch": "mocha --watch" 53 109 }, 54 "devDependencies": { 55 "@rollup/plugin-typescript": "11.1.6", 56 "@types/mocha": "10.0.6", 57 "@types/node": "20.11.20", 58 "@typescript-eslint/eslint-plugin": "6.18.1", 59 "@typescript-eslint/parser": "6.18.1", 60 "benchmark": "2.1.4", 61 "c8": "9.0.0", 62 "esbuild": "0.19.11", 63 "eslint": "8.56.0", 64 "eslint-config-prettier": "9.1.0", 65 "eslint-plugin-no-only-tests": "3.1.0", 66 "mocha": "10.3.0", 67 "npm-run-all": "4.1.5", 68 "prettier": "3.1.1", 69 "rollup": "4.9.4", 70 "tsx": "4.7.0", 71 "typescript": "5.3.3" 72 }, 73 "dependencies": { 74 "@jridgewell/resolve-uri": "^3.1.0", 75 "@jridgewell/sourcemap-codec": "^1.4.14" 76 } 110 "types": "dist/types/trace-mapping.d.ts", 111 "version": "0.3.25" 77 112 }
Note:
See TracChangeset
for help on using the changeset viewer.