12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- {
- "name": "jiti",
- "version": "1.16.0",
- "description": "Runtime typescript and ESM support for Node.js (CommonJS)",
- "repository": "unjs/jiti",
- "license": "MIT",
- "main": "./lib/index.js",
- "types": "dist/jiti.d.ts",
- "bin": "bin/jiti.js",
- "files": [
- "lib",
- "dist",
- "register.js"
- ],
- "devDependencies": {
- "@babel/core": "^7.19.1",
- "@babel/plugin-proposal-decorators": "^7.19.1",
- "@babel/plugin-proposal-export-namespace-from": "^7.18.9",
- "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
- "@babel/plugin-proposal-optional-chaining": "^7.18.9",
- "@babel/plugin-syntax-class-properties": "^7.12.13",
- "@babel/plugin-transform-modules-commonjs": "^7.18.6",
- "@babel/plugin-transform-typescript": "^7.19.1",
- "@babel/preset-typescript": "^7.18.6",
- "@babel/template": "^7.18.10",
- "@babel/types": "^7.19.0",
- "@nuxtjs/eslint-config-typescript": "^11.0.0",
- "@types/babel__core": "^7.1.19",
- "@types/babel__template": "^7.4.1",
- "@types/mkdirp": "^1.0.2",
- "@types/node": "^18.7.18",
- "@types/object-hash": "^2.2.1",
- "@types/resolve": "^1.20.2",
- "@types/semver": "^7.3.12",
- "@vitest/coverage-c8": "^0.23.4",
- "acorn": "^8.8.0",
- "babel-plugin-dynamic-import-node": "^2.3.3",
- "babel-plugin-parameter-decorator": "^1.0.16",
- "config": "^3.3.8",
- "create-require": "^1.1.1",
- "cross-env": "^7.0.3",
- "destr": "^1.1.1",
- "escape-string-regexp": "^5.0.0",
- "eslint": "^8.23.1",
- "esm": "^3.2.25",
- "estree-walker": "^3.0.1",
- "execa": "^6.1.0",
- "fast-glob": "^3.2.12",
- "mkdirp": "^1.0.4",
- "mlly": "^0.5.14",
- "object-hash": "^3.0.0",
- "pathe": "^0.3.8",
- "pirates": "^4.0.5",
- "pkg-types": "^0.3.5",
- "semver": "^7.3.7",
- "standard-version": "^9.5.0",
- "terser-webpack-plugin": "^5.3.6",
- "ts-loader": "^9.4.0",
- "tslib": "^2.4.0",
- "typescript": "^4.8.3",
- "vitest": "^0.23.4",
- "webpack": "^5.74.0",
- "webpack-cli": "^4.10.0"
- },
- "packageManager": "pnpm@7.12.0",
- "scripts": {
- "build": "pnpm clean && cross-env NODE_ENV=production pnpm webpack",
- "clean": "rm -rf dist",
- "dev": "pnpm clean && pnpm webpack --watch",
- "jiti": "cross-env JITI_DEBUG=1 JITI_CACHE=false ./bin/jiti.js",
- "jiti:legacy": "cross-env JITI_DEBUG=1 npx node@12 ./bin/jiti.js",
- "lint": "eslint --ext .ts,.js .",
- "release": "pnpm build && pnpm test && pnpm standard-version && git push --follow-tags && pnpm publish",
- "test": "pnpm lint && vitest run --coverage"
- }
- }
|