vite-plugin-inline
Version:
Inline raw TypeScript code as a string
70 lines • 1.56 kB
JSON
{
"name": "vite-plugin-inline",
"version": "0.1.0",
"description": "Inline raw TypeScript code as a string",
"keywords": [
"inline",
"static-assets",
"typescript",
"vite",
"vite-plugin"
],
"homepage": "https://github.com/yjl9903/vite-plugin-inline#readme",
"bugs": {
"url": "https://github.com/yjl9903/vite-plugin-inline/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yjl9903/vite-plugin-inline.git"
},
"license": "MIT",
"author": "XLor",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
},
"./client": {
"types": "./client.d.ts"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"files": [
"dist",
"*.d.ts"
],
"devDependencies": {
"@types/node": "^22.14.0",
"bumpp": "^10.1.0",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"unbuild": "^3.5.0",
"vite": "^6.2.5",
"vitest": "^3.1.1"
},
"peerDependencies": {
"vite": ">=5.0.0"
},
"scripts": {
"build": "unbuild",
"dev": "pnpm -C examples/vite dev",
"format": "prettier --write src/**/*.ts",
"release": "bumpp --commit --push --tag && pnpm publish",
"test": "vitest",
"typecheck": "tsc --noEmit",
"preversion": "pnpm typecheck && pnpm build",
"postversion": "pnpm build"
}
}