CoolFace
Apppublic

Ejdjdososs/fable-ai

sourceHugging Facemitupdated 3mo agoView on Hugging Face
0likes
package.json84 linesDownload Raw Back to core
1{2  "name": "@babel/core",3  "version": "7.29.7",4  "description": "Babel compiler core.",5  "main": "./lib/index.js",6  "author": "The Babel Team (https://babel.dev/team)",7  "license": "MIT",8  "publishConfig": {9    "access": "public"10  },11  "repository": {12    "type": "git",13    "url": "https://github.com/babel/babel.git",14    "directory": "packages/babel-core"15  },16  "homepage": "https://babel.dev/docs/en/next/babel-core",17  "bugs": "https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22pkg%3A%20core%22+is%3Aopen",18  "keywords": [19    "6to5",20    "babel",21    "classes",22    "const",23    "es6",24    "harmony",25    "let",26    "modules",27    "transpile",28    "transpiler",29    "var",30    "babel-core",31    "compiler"32  ],33  "engines": {34    "node": ">=6.9.0"35  },36  "funding": {37    "type": "opencollective",38    "url": "https://opencollective.com/babel"39  },40  "browser": {41    "./lib/config/files/index.js": "./lib/config/files/index-browser.js",42    "./lib/config/resolve-targets.js": "./lib/config/resolve-targets-browser.js",43    "./lib/transform-file.js": "./lib/transform-file-browser.js",44    "./lib/transformation/read-input-source-map-file.js": "./lib/transformation/read-input-source-map-file-browser.js",45    "./src/config/files/index.ts": "./src/config/files/index-browser.ts",46    "./src/config/resolve-targets.ts": "./src/config/resolve-targets-browser.ts",47    "./src/transform-file.ts": "./src/transform-file-browser.ts",48    "./src/transformation/read-input-source-map-file.ts": "./src/transformation/read-input-source-map-file-browser.ts"49  },50  "dependencies": {51    "@babel/code-frame": "^7.29.7",52    "@babel/generator": "^7.29.7",53    "@babel/helper-compilation-targets": "^7.29.7",54    "@babel/helper-module-transforms": "^7.29.7",55    "@babel/helpers": "^7.29.7",56    "@babel/parser": "^7.29.7",57    "@babel/template": "^7.29.7",58    "@babel/traverse": "^7.29.7",59    "@babel/types": "^7.29.7",60    "@jridgewell/remapping": "^2.3.5",61    "convert-source-map": "^2.0.0",62    "debug": "^4.1.0",63    "gensync": "^1.0.0-beta.2",64    "json5": "^2.2.3",65    "semver": "^6.3.1"66  },67  "devDependencies": {68    "@babel/helper-transform-fixture-test-runner": "^7.29.7",69    "@babel/plugin-syntax-flow": "^7.29.7",70    "@babel/plugin-transform-flow-strip-types": "^7.29.7",71    "@babel/plugin-transform-modules-commonjs": "^7.29.7",72    "@babel/preset-env": "^7.29.7",73    "@babel/preset-typescript": "^7.29.7",74    "@jridgewell/trace-mapping": "^0.3.28",75    "@types/convert-source-map": "^2.0.0",76    "@types/debug": "^4.1.0",77    "@types/resolve": "^1.3.2",78    "@types/semver": "^5.4.0",79    "rimraf": "^3.0.0",80    "ts-node": "^11.0.0-beta.1",81    "tsx": "^4.20.3"82  },83  "type": "commonjs"84}