UNPKG

@dooboostore/dom-render

Version:
110 lines 3.63 kB
{ "name": "@dooboostore/dom-render", "version": "1.0.113", "license": "MIT", "type": "module", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", "types": "./dist/types/index.d.ts", "typesVersions": { "*": { "*": [ "dist/types/*" ] } }, "description": "html view template engine", "keywords": [ "front", "spa", "SPA", "view template", "view", "template", "template engine", "dom-render", "front-end", "framwork", "node" ], "files": [ "dist", "src", "types.d.ts", "LICENSE.md", "tsconfig.json" ], "publishConfig": { "access": "public" }, "exports": { ".": { "types": "./dist/types/index.d.ts", "import": "./dist/esm/index.js", "require": "./dist/cjs/index.js", "default": "./dist/esm/index.js" } }, "author": "dooboostore <dooboostore@gmail.com> (https://github.com/dooboostore)", "contributors": [ "sewoo <sewooimda@nate.com> (https://github.com/sewoo)", "SeoDH <adonis_84@naver.com> (https://github.com/SeoDH)", "tkyung (https://github.com/tkyungDev)", "Hoil-Gang (https://github.com/khl1154)", "hwangsero (https://github.com/hwangsero)" ], "homepage": "https://github.com/dooboostore-develop/packages", "bugs": { "url": "https://github.com/dooboostore-develop/packages", "email": "dooboostore@gmail.com" }, "repository": { "type": "git", "url": "https://github.com/dooboostore-develop/packages" }, "peerDependencies": { "reflect-metadata": "^0.2.2" }, "devDependencies": { "@babel/core": "^7.24.0", "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/plugin-proposal-decorators": "^7.24.0", "@babel/plugin-transform-private-property-in-object": "^7.25.9", "@babel/preset-env": "^7.24.0", "@babel/preset-typescript": "^7.24.0", "@types/jest": "^26.0.22", "raw-loader": "^4.0.2", "@typescript-eslint/eslint-plugin": "^4.16.1", "@typescript-eslint/parser": "^4.16.1", "webpack": "^5.93.0", "webpack-cli": "^5.1.4", "webpack-dev-server": "^5.2.0", "html-webpack-plugin": "^5.6.3", "ts-loader": "^9.5.1", "tslib": "^2.8.1", "@types/node": "^20", "typescript": "^5.9.2", "esbuild-plugin-tsc": "^0.5.0", "esbuild": "^0.23.0", "@dooboostore/core": "1.0.30", "@dooboostore/core-node": "1.0.12", "@dooboostore/core-web": "1.0.10" }, "scripts": { "clean": "rm -rf dist", "build:esm": "node build.mjs esm", "watch:esm": "pnpm run build:esm && node build.mjs esm --watch", "build:cjs": "node build.mjs cjs", "watch:cjs": "pnpm run build:cjs && node build.mjs cjs --watch", "build": "pnpm run clean && node build.mjs all", "build:umd-bundle": "node build.mjs umd-bundle", "watch:umd-bundle": "pnpm run build:umd-bundle && node build.mjs umd-bundle --watch", "build:esm-bundle": "node build.mjs esm-bundle", "watch:esm-bundle": "pnpm run build:esm-bundle && node build.mjs esm-bundle --watch", "watch": "node build.mjs all --watch", "publish:npm": "pnpm run build && cp package.json package.json.back && pnpm pack && TARBALL_NAME=$(ls dooboostore-dom-render-*.tgz | head -n 1) && tar -xzf \"$TARBALL_NAME\" -C . --strip-components=1 package/package.json && rm \"$TARBALL_NAME\" && (pnpm publish --no-git-checks || true) && cp package.json.back package.json && rm -rf package.json.back ", "ts:clean": "find . -name '*.js' -o -name '*.map' -o -name '*.d.ts' | xargs rm -f", "typecheck": "pnpm exec tsc --noEmit", "test": "echo test" } }