vite-plugin-rttist
Version:
RTTIST plugin adding support for advanced reflection features to Vite
57 lines • 1.41 kB
JSON
{
"name": "vite-plugin-rttist",
"version": "6.0.0",
"description": "RTTIST plugin adding support for advanced reflection features to Vite",
"keywords": [
"rttist",
"plugin",
"vite",
"vite-plugin",
"transformer",
"reflection",
"loader",
"typescript",
"runtime"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist/**/*"
],
"author": "Roman Jámbor",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.15.21",
"tsup": "^7.3.0"
},
"dependencies": {
"@rttist/ts-loader-wasm": "^0.2.3"
},
"peerDependencies": {
"vite": ">=6.0.0",
"@rttist/typegen": "^0.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rttist/rttist.git",
"directory": "packages/plugins/vite-plugin-rttist"
},
"bugs": {
"url": "https://github.com/rttist/rttist/issues"
},
"homepage": "https://rttist.org",
"scripts": {
"build": "npm run prepublishOnly",
"build:dev": "tsup src/index.ts --format esm,cjs --tsconfig tsconfig.json --clean --dts --external tsup --external @types/node --external @rttist/ts-loader-wasm --sourcemap"
}
}