UNPKG

@makerbi/vue3-sfc-loader

Version:
138 lines 5.4 kB
{ "name": "@makerbi/vue3-sfc-loader", "description": "Single File Component loader", "keywords": [ "vue", "vuejs", "vue3", "component-loader", "nobuild" ], "homepage": "https://github.com/AndersonBY/vue3-sfc-loader", "author": { "name": "AndersonBY", "url": "https://github.com/AndersonBY" }, "repository": { "type": "git", "url": "git+https://github.com/AndersonBY/vue3-sfc-loader.git" }, "license": "MIT", "version": "0.9.8", "browserslist": "> 1%, last 8 versions, Firefox ESR and not dead", "browser": "./dist/vue3-sfc-loader.js", "main": "./dist/vue3-sfc-loader.js", "module": "./dist/vue3-sfc-loader.esm.js", "types": "./dist/types/vue3-esm/src/index.d.ts", "exports": { ".": { "types": "./dist/types/vue3-esm/src/index.d.ts", "node": { "import": "./dist/vue3-sfc-loader-node.mjs", "require": "./dist/vue3-sfc-loader-node.js" }, "import": "./dist/vue3-sfc-loader.esm.js", "require": "./dist/vue3-sfc-loader.js" }, "./dist/*": "./dist/*", "./package.json": "./package.json" }, "standard-version": { "scripts": { "postbump": "pnpm run build-web && pnpm run build-node && pnpm run tests && pnpm run pushDocs" } }, "devDependencies": { "@babel/plugin-transform-runtime": "^7.28.5", "@babel/preset-env": "^7.28.5", "@rollup/plugin-alias": "^6.0.0", "@rollup/plugin-replace": "^6.0.3", "@rollup/plugin-terser": "^0.4.4", "@rollup/plugin-typescript": "^12.3.0", "@types/babel__code-frame": "^7.0.6", "@types/babel__core": "^7.20.5", "@types/babel__traverse": "^7.28.0", "@types/node": "^25.0.2", "@types/spark-md5": "^3.0.5", "assert": "^2.1.0", "babel-loader": "^10.0.0", "babel-plugin-polyfill-corejs3": "^0.13.0", "bn.js": "^5.2.2", "buffer": "^6.0.3", "caniuse-api": "^3.0.0", "compression-webpack-plugin": "^11.1.0", "core-js": "^3.47.0", "core-js-pure": "^3.47.0", "cross-env": "^10.1.0", "dts-bundle": "^0.7.3", "duplicate-package-checker-webpack-plugin": "^3.0.0", "jest": "^30.2.0", "lodash-es": "^4.17.21", "lru-cache": "^11.2.4", "memory-fs": "^0.5.0", "path-browserify": "^1.0.1", "process": "^0.11.10", "puppeteer": "^24.33.0", "rimraf": "^6.1.2", "rollup": "^4.53.5", "safe-buffer": "^5.2.1", "semver": "^7.7.3", "source-map-explorer": "~2.5.3", "standard-version": "^9.5.0", "stream-browserify": "^3.0.0", "terser-webpack-plugin": "^5.3.16", "ts-loader": "^9.5.4", "tslib": "^2.8.1", "typedoc": "^0.28.15", "typedoc-plugin-markdown": "^4.9.0", "typescript": "^5.9.3", "url": "^0.11.4", "util": "^0.12.5", "vm-browserify": "^1.1.2", "vue": "^3.5.25", "webpack": "^5.103.0", "webpack-bundle-analyzer": "^5.1.0", "webpack-cli": "^6.0.1" }, "dependencies": { "@babel/code-frame": "^7.27.1", "@babel/core": "^7.28.5", "@babel/generator": "^7.28.5", "@babel/helper-member-expression-to-functions": "^7.28.5", "@babel/helper-module-imports": "^7.27.1", "@babel/helper-module-transforms": "^7.28.3", "@babel/helper-plugin-utils": "^7.27.1", "@babel/helper-replace-supers": "^7.27.1", "@babel/helper-simple-access": "^7.27.1", "@babel/helper-split-export-declaration": "^7.24.7", "@babel/helper-validator-identifier": "^7.28.5", "@babel/parser": "^7.28.5", "@babel/plugin-transform-arrow-functions": "^7.27.1", "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.27.1", "@babel/plugin-transform-dynamic-import": "^7.27.1", "@babel/plugin-transform-explicit-resource-management": "^7.28.0", "@babel/plugin-transform-modules-commonjs": "^7.27.1", "@babel/plugin-transform-nullish-coalescing-operator": "^7.27.1", "@babel/plugin-transform-optional-chaining": "^7.27.1", "@babel/plugin-transform-regexp-modifiers": "^7.27.1", "@babel/plugin-transform-typescript": "^7.28.5", "@vue/babel-helper-vue-jsx-merge-props": "^1.4.0", "@vue/babel-plugin-jsx": "^2.0.1", "@vue/babel-preset-jsx": "^1.4.0", "@vue/compiler-dom": "^3.5.25", "@vue/compiler-sfc": "^3.5.25", "@vue/shared": "^3.5.25", "spark-md5": "^3.0.2" }, "scripts": { "coverage": "node test/coverageTest.mjs", "test": "cd test && pnpm run start", "tests": "jest --runInBand \"tests/.*\\.test.js\"", "dev": "webpack --mode=development --config ./build/webpack.config.js --progress --watch", "build-web": "rimraf ./dist/ && cross-env-shell webpack --mode=production --config ./build/webpack.config.js --progress --env targetsBrowsers=\\\"$npm_package_browserslist\\\"", "build-node": "rollup --config ./build/rollup.config-node.mjs", "docs": "cross-env-shell \"node build/evalHtmlComments.js README.md $npm_package_version && node build/evalHtmlComments.js docs/examples.md $npm_package_version && typedoc --logLevel 1 --plugin typedoc-plugin-markdown --typeDeclarationFormat htmlTable --tsconfig ./build/tsconfig.json --out ./docs/api --readme none --excludeInternal --useHTMLAnchors true ./src/index.ts\"", "pushDocs": "pnpm run docs && git add docs/ README.md && cross-env-shell git commit -m \\\"chore(docs): v$npm_package_version API docs & examples \\\" docs", "release": "standard-version --header \"\"" } }