CoolFace
Apppublic

sourav-das/stem-separator

sourceHugging Facemitupdated 6mo agoView on Hugging Face
3likes
package.json134 linesDownload Raw Back to jiti
1{2  "name": "jiti",3  "version": "2.6.1",4  "description": "Runtime typescript and ESM support for Node.js",5  "repository": "unjs/jiti",6  "license": "MIT",7  "type": "module",8  "exports": {9    ".": {10      "import": {11        "types": "./lib/jiti.d.mts",12        "default": "./lib/jiti.mjs"13      },14      "require": {15        "types": "./lib/jiti.d.cts",16        "default": "./lib/jiti.cjs"17      }18    },19    "./register": {20      "types": "./lib/jiti-register.d.mts",21      "import": "./lib/jiti-register.mjs"22    },23    "./native": {24      "types": "./lib/jiti.d.mts",25      "import": "./lib/jiti-native.mjs"26    },27    "./package.json": "./package.json"28  },29  "main": "./lib/jiti.cjs",30  "module": "./lib/jiti.mjs",31  "types": "./lib/jiti.d.cts",32  "typesVersions": {33    "*": {34      "register": [35        "./lib/jiti-register.d.mts"36      ],37      "native": [38        "./lib/jiti.d.mts"39      ]40    }41  },42  "bin": {43    "jiti": "./lib/jiti-cli.mjs"44  },45  "files": [46    "lib",47    "dist",48    "register.cjs"49  ],50  "scripts": {51    "bench": "node test/bench.mjs && deno -A test/bench.mjs && bun --bun test/bench.mjs",52    "build": "pnpm clean && pnpm rspack",53    "clean": "rm -rf dist",54    "dev": "pnpm clean && pnpm rspack --watch",55    "jiti": "JITI_DEBUG=1 JITI_JSX=1 lib/jiti-cli.mjs",56    "lint": "eslint . && prettier -c src lib test stubs",57    "lint:fix": "eslint --fix . && prettier -w src lib test stubs",58    "prepack": "pnpm build",59    "release": "pnpm build && pnpm test && changelogen --release --push --publish",60    "test": "pnpm lint && pnpm test:types && vitest run --coverage && pnpm test:node-register && pnpm test:bun && pnpm test:native",61    "test:bun": "bun --bun test test/bun",62    "test:native": "pnpm test:native:bun && pnpm test:native:node && pnpm test:native:deno",63    "test:native:bun": "bun --bun test test/native/bun.test.ts",64    "test:native:deno": "deno test -A --no-check test/native/deno.test.ts",65    "test:native:node": "node --test --experimental-strip-types test/native/node.test.ts",66    "test:node-register": "JITI_JSX=1 node --test test/node-register.test.mjs",67    "test:types": "tsc --noEmit"68  },69  "devDependencies": {70    "@babel/core": "^7.28.4",71    "@babel/helper-module-imports": "^7.27.1",72    "@babel/helper-module-transforms": "^7.28.3",73    "@babel/helper-plugin-utils": "^7.27.1",74    "@babel/helper-simple-access": "^7.27.1",75    "@babel/plugin-proposal-decorators": "^7.28.0",76    "@babel/plugin-syntax-class-properties": "^7.12.13",77    "@babel/plugin-syntax-import-assertions": "^7.27.1",78    "@babel/plugin-syntax-jsx": "^7.27.1",79    "@babel/plugin-transform-export-namespace-from": "^7.27.1",80    "@babel/plugin-transform-react-jsx": "^7.27.1",81    "@babel/plugin-transform-typescript": "^7.28.0",82    "@babel/preset-typescript": "^7.27.1",83    "@babel/template": "^7.27.2",84    "@babel/traverse": "^7.28.4",85    "@babel/types": "^7.28.4",86    "@rspack/cli": "^1.5.8",87    "@rspack/core": "^1.5.8",88    "@types/babel__core": "^7.20.5",89    "@types/babel__helper-module-imports": "^7.18.3",90    "@types/babel__helper-plugin-utils": "^7.10.3",91    "@types/babel__template": "^7.4.4",92    "@types/babel__traverse": "^7.28.0",93    "@types/node": "^24.6.1",94    "@vitest/coverage-v8": "^3.2.4",95    "acorn": "^8.15.0",96    "babel-plugin-parameter-decorator": "^1.0.16",97    "changelogen": "^0.6.2",98    "config": "^4.1.1",99    "consola": "^3.4.2",100    "defu": "^6.1.4",101    "destr": "^2.0.5",102    "escape-string-regexp": "^5.0.0",103    "eslint": "^9.36.0",104    "eslint-config-unjs": "^0.5.0",105    "estree-walker": "^3.0.3",106    "etag": "^1.8.1",107    "fast-glob": "^3.3.3",108    "is-installed-globally": "^1.0.0",109    "mime": "^4.1.0",110    "mlly": "^1.8.0",111    "moment-timezone": "^0.6.0",112    "nano-jsx": "^0.2.0",113    "pathe": "^2.0.3",114    "pkg-types": "^2.3.0",115    "preact": "^10.27.2",116    "preact-render-to-string": "^6.6.2",117    "prettier": "^3.6.2",118    "react": "^19.1.1",119    "react-dom": "^19.1.1",120    "reflect-metadata": "^0.2.2",121    "solid-js": "^1.9.9",122    "std-env": "^3.9.0",123    "terser-webpack-plugin": "^5.3.14",124    "tinyexec": "^1.0.1",125    "ts-loader": "^9.5.4",126    "typescript": "^5.9.3",127    "vitest": "^3.2.4",128    "vue": "^3.5.22",129    "yoctocolors": "^2.1.2",130    "zod": "^4.1.11"131  },132  "packageManager": "pnpm@10.17.1"133}134