1 | {
|
2 | "name": "vue3-sfc-loader",
|
3 | "description": "Single File Component loader",
|
4 | "keywords": [
|
5 | "vue",
|
6 | "vuejs",
|
7 | "vue3",
|
8 | "component-loader",
|
9 | "nobuild"
|
10 | ],
|
11 | "homepage": "https://github.com/FranckFreiburger/vue3-sfc-loader",
|
12 | "author": {
|
13 | "name": "Franck FREIBURGER",
|
14 | "email": "franck.freiburger@gmail.com",
|
15 | "url": "https://franck-freiburger.com/"
|
16 | },
|
17 | "repository": {
|
18 | "type": "git",
|
19 | "url": "https://github.com/FranckFreiburger/vue3-sfc-loader"
|
20 | },
|
21 | "license": "MIT",
|
22 | "version": "0.8.4",
|
23 | "browserslist": "> 1%, last 2 versions, Firefox ESR, not dead, ie 11",
|
24 | "main": "dist/vue3-sfc-loader.js",
|
25 | "types": "dist/vue3-sfc-loader.d.ts",
|
26 | "scripts": {
|
27 | "coverage": "node test/coverageTest.mjs",
|
28 | "test": "cd test && yarn run start",
|
29 | "testVue2": "cd test && cross-env VUE_VERSION=2 yarn run start",
|
30 | "tests": "jest --runInBand \"tests/.*\\.test.js\"",
|
31 | "dev": "webpack --mode=development --config ./build/webpack.config.js --progress --watch",
|
32 | "build": "rimraf ./dist/ && cross-env-shell webpack --mode=production --config ./build/webpack.config.js --progress --env targetsBrowsers=\\\"$npm_package_browserslist\\\"",
|
33 | "docs": "cross-env-shell \"node build/evalHtmlComments.js README.md $npm_package_version && node build/evalHtmlComments.js docs/examples.md $npm_package_version && typedoc --plugin typedoc-plugin-markdown --mode file --tsconfig ./build/tsconfig.json --inputFiles ./src/index.ts --out ./docs/api --readme none --stripInternal --namedAnchors true\"",
|
34 | "pushDocs": "yarn run docs && git add docs/ && git add README.md && cross-env-shell git commit -m \\\"chore(docs): v$npm_package_version API docs & examples \\\" docs",
|
35 | "release": "standard-version --header \"\""
|
36 | },
|
37 | "standard-version": {
|
38 | "scripts": {
|
39 | "postbump": "yarn run build && yarn run tests && yarn run pushDocs"
|
40 | }
|
41 | },
|
42 | "devDependencies": {
|
43 | "@babel/code-frame": "^7.14.5",
|
44 | "@babel/core": "^7.14.6",
|
45 | "@babel/generator": "^7.14.5",
|
46 | "@babel/parser": "^7.14.7",
|
47 | "@babel/plugin-proposal-dynamic-import": "^7.14.5",
|
48 | "@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
|
49 | "@babel/plugin-proposal-optional-chaining": "^7.14.5",
|
50 | "@babel/plugin-transform-arrow-functions": "^7.14.5",
|
51 | "@babel/plugin-transform-modules-commonjs": "^7.14.5",
|
52 | "@babel/plugin-transform-runtime": "^7.14.5",
|
53 | "@babel/preset-env": "^7.14.7",
|
54 | "@types/babel__code-frame": "^7.0.2",
|
55 | "@types/babel__core": "^7.1.13",
|
56 | "@types/babel__traverse": "^7.14.0",
|
57 | "@types/spark-md5": "^3.0.2",
|
58 | "@vue/babel-helper-vue-jsx-merge-props": "^1.2.1",
|
59 | "@vue/babel-plugin-jsx": "^1.0.6",
|
60 | "@vue/babel-preset-jsx": "^1.2.4",
|
61 | "@vue/compiler-dom": "^3.1.2",
|
62 | "@vue/compiler-sfc": "^3.1.2",
|
63 | "@vue/component-compiler-utils": "^3.2.2",
|
64 | "@vue/shared": "^3.1.2",
|
65 | "assert": "^2.0.0",
|
66 | "babel-loader": "^8.2.2",
|
67 | "babel-plugin-polyfill-corejs3": "^0.2.3",
|
68 | "bn.js": "5",
|
69 | "buffer": "^6.0.3",
|
70 | "caniuse-api": "^3.0.0",
|
71 | "compression-webpack-plugin": "^8.0.1",
|
72 | "core-js": "^3.15.2",
|
73 | "core-js-pure": "^3.15.2",
|
74 | "cross-env": "^7.0.3",
|
75 | "dts-bundle": "^0.7.3",
|
76 | "duplicate-package-checker-webpack-plugin": "^3.0.0",
|
77 | "jest": "^27.0.6",
|
78 | "lodash-es": "^4.17.21",
|
79 | "lru-cache": "^6.0.0",
|
80 | "path-browserify": "^1.0.1",
|
81 | "process": "^0.11.10",
|
82 | "puppeteer": "^10.1.0",
|
83 | "rimraf": "^3.0.2",
|
84 | "safe-buffer": "^5.2.1",
|
85 | "semver": "^7.3.5",
|
86 | "source-map-explorer": "2.5.2",
|
87 | "spark-md5": "^3.0.1",
|
88 | "standard-version": "^9.3.0",
|
89 | "stream-browserify": "^3.0.0",
|
90 | "terser-webpack-plugin": "^5.1.4",
|
91 | "ts-loader": "^9.2.3",
|
92 | "typedoc": "0.19.2",
|
93 | "typedoc-plugin-markdown": "3.1.1",
|
94 | "typescript": "^4.3.4",
|
95 | "url": "^0.11.0",
|
96 | "util": "^0.12.4",
|
97 | "vm-browserify": "^1.1.2",
|
98 | "vue": "3",
|
99 | "vue-template-compiler": "^2.6.14",
|
100 | "vue2": "npm:vue@^2.6.14",
|
101 | "webpack": "^5.41.1",
|
102 | "webpack-bundle-analyzer": "^4.4.2",
|
103 | "webpack-cli": "^4.7.2"
|
104 | }
|
105 | }
|