jsx-async-runtime
Advanced tools
Comparing version 0.1.2 to 0.1.3
@@ -0,2 +1,2 @@ | ||
export * from "./jsx/jsx-runtime"; | ||
export * from "./jsx/jsx.types"; | ||
export * from "./jsx/jsx-runtime"; |
{ | ||
"name": "jsx-async-runtime", | ||
"version": "0.1.2", | ||
"version": "0.1.3", | ||
"description": "An asynchronous JSX runtime without dependencies to be used as server-side template engine.", | ||
@@ -20,4 +20,4 @@ "keywords": [ | ||
"author": { | ||
"name": "Maik Jablonski", | ||
"email": "mail@mjablonski.de" | ||
"name": "Maik Jablonski (Neoskop GmbH)", | ||
"email": "jablonski@neoskop.de" | ||
}, | ||
@@ -42,13 +42,12 @@ "type": "module", | ||
"scripts": { | ||
"build": "esbuild --minify --platform=node --format=esm --outdir=./dist/esm --bundle ./src/*.ts", | ||
"build:types": "tsc --emitDeclarationOnly --outDir ./dist/types", | ||
"clean": "rm -r dist", | ||
"format": "prettier --write src", | ||
"release": "npm run clean ; npm run build:types && npm run build" | ||
"start": "nodemon -w src -e 'js,jsx,ts,tsx' --exec npm run build", | ||
"build": "rm -r dist ; npm run build:types && npm run build:esm", | ||
"build:esm": "esbuild --minify --platform=node --format=esm --outdir=./dist/esm --bundle ./src/*.ts", | ||
"build:types": "tsc --emitDeclarationOnly --outDir ./dist/types" | ||
}, | ||
"devDependencies": { | ||
"esbuild": "latest", | ||
"prettier": "latest", | ||
"typescript": "latest" | ||
"esbuild": "0.19.11", | ||
"nodemon": "3.0.2", | ||
"typescript": "5.3.3" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
32787