2018-09-19 15:35:38 +00:00
|
|
|
{
|
|
|
|
"private": true,
|
2024-01-18 13:34:34 +00:00
|
|
|
"version": "3.4.15",
|
2024-02-05 03:34:23 +00:00
|
|
|
"packageManager": "pnpm@8.15.1",
|
2023-02-03 10:12:56 +00:00
|
|
|
"type": "module",
|
2018-09-19 15:35:38 +00:00
|
|
|
"scripts": {
|
2023-02-03 10:12:56 +00:00
|
|
|
"dev": "node scripts/dev.js",
|
|
|
|
"build": "node scripts/build.js",
|
|
|
|
"build-dts": "tsc -p tsconfig.build.json && rollup -c rollup.dts.config.js",
|
2023-09-21 14:12:49 +00:00
|
|
|
"clean": "rimraf packages/*/dist temp .eslintcache",
|
2023-08-21 03:33:51 +00:00
|
|
|
"size": "run-s \"size-*\" && tsx scripts/usage-size.ts",
|
|
|
|
"size-global": "node scripts/build.js vue runtime-dom -f global -p --size",
|
|
|
|
"size-esm-runtime": "node scripts/build.js vue -f esm-bundler-runtime",
|
|
|
|
"size-esm": "node scripts/build.js runtime-dom runtime-core reactivity shared -f esm-bundler",
|
2023-02-02 08:36:07 +00:00
|
|
|
"check": "tsc --incremental --noEmit",
|
2023-12-29 04:42:37 +00:00
|
|
|
"lint": "eslint --cache --ext .js,.ts,.tsx . --ignore-path .gitignore",
|
2023-08-11 09:30:04 +00:00
|
|
|
"format": "prettier --write --cache .",
|
|
|
|
"format-check": "prettier --check --cache .",
|
2023-01-26 14:53:39 +00:00
|
|
|
"test": "vitest",
|
|
|
|
"test-unit": "vitest -c vitest.unit.config.ts",
|
2023-02-03 10:12:56 +00:00
|
|
|
"test-e2e": "node scripts/build.js vue -f global -d && vitest -c vitest.e2e.config.ts",
|
2023-02-03 07:48:12 +00:00
|
|
|
"test-dts": "run-s build-dts test-dts-only",
|
2023-02-03 09:10:31 +00:00
|
|
|
"test-dts-only": "tsc -p ./packages/dts-test/tsconfig.test.json",
|
2023-01-26 14:53:39 +00:00
|
|
|
"test-coverage": "vitest -c vitest.unit.config.ts --coverage",
|
2023-12-08 13:26:48 +00:00
|
|
|
"test-bench": "vitest bench",
|
2023-02-03 10:12:56 +00:00
|
|
|
"release": "node scripts/release.js",
|
2020-02-06 15:22:16 +00:00
|
|
|
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
|
2023-02-03 10:12:56 +00:00
|
|
|
"dev-esm": "node scripts/dev.js -if esm-bundler-runtime",
|
2021-09-23 18:46:16 +00:00
|
|
|
"dev-compiler": "run-p \"dev template-explorer\" serve",
|
2022-11-14 02:22:20 +00:00
|
|
|
"dev-sfc": "run-s dev-sfc-prepare dev-sfc-run",
|
2023-11-10 09:17:17 +00:00
|
|
|
"dev-sfc-prepare": "node scripts/pre-dev-sfc.js || npm run build-all-cjs",
|
2022-11-14 02:22:20 +00:00
|
|
|
"dev-sfc-serve": "vite packages/sfc-playground --host",
|
2023-11-12 08:30:30 +00:00
|
|
|
"dev-sfc-run": "run-p \"dev compiler-sfc -f esm-browser\" \"dev vue -if esm-bundler-runtime\" \"dev vue -ipf esm-browser-runtime\" \"dev server-renderer -if esm-bundler\" dev-sfc-serve",
|
2020-02-06 15:22:16 +00:00
|
|
|
"serve": "serve",
|
2023-09-06 10:31:10 +00:00
|
|
|
"open": "open http://localhost:3000/packages/template-explorer/local.html",
|
2023-12-04 19:08:21 +00:00
|
|
|
"build-sfc-playground": "run-s build-all-cjs build-runtime-esm build-browser-esm build-ssr-esm build-sfc-playground-self",
|
2023-11-21 10:06:42 +00:00
|
|
|
"build-all-cjs": "node scripts/build.js vue runtime compiler reactivity shared -af cjs",
|
2023-02-03 10:12:56 +00:00
|
|
|
"build-runtime-esm": "node scripts/build.js runtime reactivity shared -af esm-bundler && node scripts/build.js vue -f esm-bundler-runtime && node scripts/build.js vue -f esm-browser-runtime",
|
2023-12-04 19:08:21 +00:00
|
|
|
"build-browser-esm": "node scripts/build.js runtime reactivity shared -af esm-bundler && node scripts/build.js vue -f esm-bundler && node scripts/build.js vue -f esm-browser",
|
2023-02-03 10:12:56 +00:00
|
|
|
"build-ssr-esm": "node scripts/build.js compiler-sfc server-renderer -f esm-browser",
|
2022-11-14 02:14:12 +00:00
|
|
|
"build-sfc-playground-self": "cd packages/sfc-playground && npm run build",
|
2023-07-09 04:52:13 +00:00
|
|
|
"preinstall": "npx only-allow pnpm",
|
2022-11-09 13:14:59 +00:00
|
|
|
"postinstall": "simple-git-hooks"
|
2019-11-02 02:54:01 +00:00
|
|
|
},
|
2022-11-09 13:14:59 +00:00
|
|
|
"simple-git-hooks": {
|
2023-02-02 08:36:07 +00:00
|
|
|
"pre-commit": "pnpm lint-staged && pnpm check",
|
2023-12-26 06:59:34 +00:00
|
|
|
"commit-msg": "node scripts/verify-commit.js"
|
2018-09-19 15:37:18 +00:00
|
|
|
},
|
|
|
|
"lint-staged": {
|
2022-11-09 13:14:59 +00:00
|
|
|
"*.{js,json}": [
|
2020-06-16 16:09:20 +00:00
|
|
|
"prettier --write"
|
2018-09-19 15:37:18 +00:00
|
|
|
],
|
2019-10-14 19:07:43 +00:00
|
|
|
"*.ts?(x)": [
|
2023-12-26 14:13:50 +00:00
|
|
|
"eslint --fix",
|
2020-06-16 16:09:20 +00:00
|
|
|
"prettier --parser=typescript --write"
|
2018-09-19 15:37:18 +00:00
|
|
|
]
|
|
|
|
},
|
2020-03-25 13:44:19 +00:00
|
|
|
"engines": {
|
2023-10-20 02:43:54 +00:00
|
|
|
"node": ">=18.12.0"
|
2020-03-25 13:44:19 +00:00
|
|
|
},
|
2018-09-19 15:35:38 +00:00
|
|
|
"devDependencies": {
|
2024-02-05 03:34:34 +00:00
|
|
|
"@babel/parser": "^7.23.9",
|
|
|
|
"@babel/types": "^7.23.9",
|
2023-12-08 13:26:48 +00:00
|
|
|
"@codspeed/vitest-plugin": "^2.3.1",
|
2023-10-20 02:27:34 +00:00
|
|
|
"@rollup/plugin-alias": "^5.0.1",
|
|
|
|
"@rollup/plugin-commonjs": "^25.0.7",
|
|
|
|
"@rollup/plugin-json": "^6.0.1",
|
|
|
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
|
|
"@rollup/plugin-replace": "^5.0.4",
|
|
|
|
"@rollup/plugin-terser": "^0.4.4",
|
2023-11-10 06:20:50 +00:00
|
|
|
"@types/hash-sum": "^1.0.2",
|
2023-11-29 04:24:50 +00:00
|
|
|
"@types/minimist": "^1.2.5",
|
2024-02-05 03:34:23 +00:00
|
|
|
"@types/node": "^20.11.16",
|
2024-01-03 09:35:15 +00:00
|
|
|
"@types/semver": "^7.5.6",
|
2024-01-15 10:15:47 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^6.18.1",
|
|
|
|
"@typescript-eslint/parser": "^6.18.1",
|
2024-01-29 01:44:12 +00:00
|
|
|
"@vitest/coverage-istanbul": "^1.2.2",
|
2022-11-14 03:48:52 +00:00
|
|
|
"@vue/consolidate": "0.17.3",
|
2023-09-21 12:32:56 +00:00
|
|
|
"conventional-changelog-cli": "^4.1.0",
|
2023-09-19 07:33:33 +00:00
|
|
|
"enquirer": "^2.4.1",
|
2023-10-20 02:27:34 +00:00
|
|
|
"esbuild": "^0.19.5",
|
2023-09-19 08:32:31 +00:00
|
|
|
"esbuild-plugin-polyfill-node": "^0.3.0",
|
2023-12-22 13:51:56 +00:00
|
|
|
"eslint": "^8.56.0",
|
2023-11-29 04:24:50 +00:00
|
|
|
"eslint-define-config": "^1.24.1",
|
2023-10-31 14:13:33 +00:00
|
|
|
"eslint-plugin-import": "npm:eslint-plugin-i@^2.29.1",
|
2024-01-15 10:15:47 +00:00
|
|
|
"eslint-plugin-jest": "^27.6.3",
|
2023-02-04 03:59:42 +00:00
|
|
|
"estree-walker": "^2.0.2",
|
2023-09-21 12:25:32 +00:00
|
|
|
"execa": "^8.0.1",
|
2024-01-08 07:03:47 +00:00
|
|
|
"jsdom": "^23.2.0",
|
2023-12-11 10:14:00 +00:00
|
|
|
"lint-staged": "^15.2.0",
|
2023-09-19 07:33:33 +00:00
|
|
|
"lodash": "^4.17.21",
|
2024-02-05 03:34:34 +00:00
|
|
|
"magic-string": "^0.30.6",
|
2023-08-21 03:33:51 +00:00
|
|
|
"markdown-table": "^3.0.3",
|
2024-01-29 01:41:48 +00:00
|
|
|
"marked": "^11.2.0",
|
2023-09-19 07:33:33 +00:00
|
|
|
"minimist": "^1.2.8",
|
2024-01-29 01:41:48 +00:00
|
|
|
"npm-run-all2": "^5.0.2",
|
2023-10-20 02:23:18 +00:00
|
|
|
"picocolors": "^1.0.0",
|
2024-01-15 10:15:47 +00:00
|
|
|
"prettier": "^3.2.2",
|
2023-08-21 03:33:51 +00:00
|
|
|
"pretty-bytes": "^6.1.1",
|
2023-09-19 07:33:33 +00:00
|
|
|
"pug": "^3.0.2",
|
2024-02-05 03:37:07 +00:00
|
|
|
"puppeteer": "~21.11.0",
|
2023-10-20 02:45:54 +00:00
|
|
|
"rimraf": "^5.0.5",
|
2023-10-23 08:00:13 +00:00
|
|
|
"rollup": "^4.1.4",
|
2023-10-20 02:27:34 +00:00
|
|
|
"rollup-plugin-dts": "^6.1.0",
|
|
|
|
"rollup-plugin-esbuild": "^6.1.0",
|
2023-03-28 01:52:06 +00:00
|
|
|
"rollup-plugin-polyfill-node": "^0.12.0",
|
2023-09-19 07:33:33 +00:00
|
|
|
"semver": "^7.5.4",
|
2023-09-06 10:31:10 +00:00
|
|
|
"serve": "^14.2.1",
|
2023-09-06 21:05:43 +00:00
|
|
|
"simple-git-hooks": "^2.9.0",
|
2023-10-20 02:27:34 +00:00
|
|
|
"terser": "^5.22.0",
|
2023-10-23 07:55:23 +00:00
|
|
|
"todomvc-app-css": "^2.4.3",
|
2023-09-19 07:33:33 +00:00
|
|
|
"tslib": "^2.6.2",
|
2023-12-20 02:38:20 +00:00
|
|
|
"tsx": "^4.7.0",
|
2023-10-21 08:59:26 +00:00
|
|
|
"typescript": "^5.2.2",
|
2024-01-29 01:35:50 +00:00
|
|
|
"vite": "^5.0.12",
|
2024-01-29 01:44:12 +00:00
|
|
|
"vitest": "^1.2.2"
|
2018-09-19 15:35:38 +00:00
|
|
|
}
|
|
|
|
}
|