@itrocks/reflect
Version:
Runtime introspection of TypeScript classes and their properties, including property type
66 lines (65 loc) • 1.67 kB
JSON
{
"author": {
"name": "Baptiste Pillot",
"email": "baptiste@pillot.fr"
},
"dependencies": {
"@itrocks/class-file": "latest",
"@itrocks/class-type": "latest",
"@itrocks/property-default": "latest",
"@itrocks/property-type": "latest",
"@itrocks/sorted-array": "latest",
"reflect-metadata": "^0.2"
},
"description": "Runtime introspection of TypeScript classes and their properties, including property type",
"devDependencies": {
"@types/node": "^24.10",
"typescript": "^6.0"
},
"engines": {
"node": ">=24"
},
"exports": {
"import": "./esm/reflect.js",
"require": "./cjs/reflect.js"
},
"files": [
"LICENSE",
"README.md",
"cjs",
"esm",
"!*.map"
],
"homepage": "https://it.rocks",
"keywords": [
"backend",
"class",
"it.rocks",
"property",
"reflect",
"reflection",
"runtime",
"type"
],
"license": "ISC",
"name": "@itrocks/reflect",
"repository": {
"type": "git",
"url": "git+https://github.com/itrocks-ts/reflect.git"
},
"scripts": {
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json && node esm/esm",
"build:demo": "npm run build:demo:cjs && npm run build:demo:esm",
"build:demo:cjs": "tsc -p tsconfig.demo.cjs.json",
"build:demo:esm": "tsc -p tsconfig.demo.esm.json",
"build:test": "npm run build:test:cjs && npm run build:test:esm",
"build:test:cjs": "tsc -p tsconfig.test.cjs.json",
"build:test:esm": "tsc -p tsconfig.test.esm.json",
"build:all": "npm run build && npm run build:demo",
"start:demo:cjs": "node demo/cjs/index",
"start:demo:esm": "node demo/esm/index"
},
"version": "0.2.6"
}