@ordojs/dev-tools
Version:
Advanced developer tools for OrdoJS with component inspector, AST explorer, and performance profiling
104 lines (103 loc) • 2.68 kB
JSON
{
"name": "@ordojs/dev-tools",
"version": "0.1.0",
"description": "Advanced developer tools for OrdoJS with component inspector, AST explorer, and performance profiling",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./inspector": {
"import": "./dist/inspector.mjs",
"require": "./dist/inspector.js",
"types": "./dist/inspector.d.ts"
},
"./profiler": {
"import": "./dist/profiler.mjs",
"require": "./dist/profiler.js",
"types": "./dist/profiler.d.ts"
},
"./ast-explorer": {
"import": "./dist/ast-explorer.mjs",
"require": "./dist/ast-explorer.js",
"types": "./dist/ast-explorer.d.ts"
},
"./hmr": {
"import": "./dist/hmr.mjs",
"require": "./dist/hmr.js",
"types": "./dist/hmr.d.ts"
},
"./bundle-analyzer": {
"import": "./dist/bundle-analyzer.mjs",
"require": "./dist/bundle-analyzer.js",
"types": "./dist/bundle-analyzer.d.ts"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"lint": "eslint src --ext .ts",
"type-check": "tsc --noEmit"
},
"keywords": [
"ordojs",
"dev-tools",
"component-inspector",
"ast-explorer",
"performance-profiling",
"hot-module-replacement",
"bundle-analyzer",
"debugging"
],
"author": "OrdoJS Team",
"license": "MIT",
"dependencies": {
"@ordojs/core": "workspace:*",
"@ordojs/cli": "workspace:*",
"ws": "^8.14.2",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"express": "^4.18.2",
"cors": "^2.8.5",
"compression": "^1.7.4",
"serve-static": "^1.15.0",
"morgan": "^1.10.0",
"helmet": "^7.1.0",
"rate-limiter-flexible": "^7.1.1",
"node-cron": "^3.0.3",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/ws": "^8.5.10",
"@types/express": "^4.17.21",
"@types/cors": "^2.8.17",
"@types/compression": "^1.7.5",
"@types/serve-static": "^1.15.5",
"@types/morgan": "^1.9.9",
"@types/node-cron": "^3.0.11",
"typescript": "^5.3.3",
"tsup": "^8.0.1",
"vitest": "^1.0.4",
"eslint": "^8.56.0",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0"
},
"peerDependencies": {
"@ordojs/core": ">=0.1.0",
"@ordojs/cli": ">=0.1.0"
},
"engines": {
"node": ">=18.0.0"
}
}