vue/package.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

133 lines
4.4 KiB
JSON
Raw Normal View History

2022-04-29 20:23:21 +00:00
{
"name": "vue",
2022-11-09 12:39:52 +00:00
"version": "2.7.14",
"packageManager": "pnpm@8.9.2",
2022-04-29 20:23:21 +00:00
"description": "Reactive, component-oriented view layer for modern web interfaces.",
"main": "dist/vue.runtime.common.js",
"module": "dist/vue.runtime.esm.js",
"unpkg": "dist/vue.js",
"jsdelivr": "dist/vue.js",
"typings": "types/index.d.ts",
"files": [
"src",
"dist/*.js",
2022-06-01 03:12:30 +00:00
"dist/*.mjs",
2022-05-31 07:32:44 +00:00
"types/*.d.ts",
"compiler-sfc",
"packages/compiler-sfc"
2022-04-29 20:23:21 +00:00
],
2022-06-01 02:11:19 +00:00
"exports": {
".": {
"import": {
"node": "./dist/vue.runtime.mjs",
"default": "./dist/vue.runtime.esm.js"
},
"require": "./dist/vue.runtime.common.js",
"types": "./types/index.d.ts"
},
"./compiler-sfc": {
"import": "./compiler-sfc/index.mjs",
"require": "./compiler-sfc/index.js"
},
"./dist/*": "./dist/*",
2022-06-10 14:51:41 +00:00
"./types/*": "./types/*",
"./package.json": "./package.json"
2022-06-01 02:11:19 +00:00
},
2022-04-29 20:23:21 +00:00
"sideEffects": false,
"scripts": {
2022-05-31 07:32:44 +00:00
"dev": "rollup -w -c scripts/config.js --environment TARGET:full-dev",
"dev:cjs": "rollup -w -c scripts/config.js --environment TARGET:runtime-cjs-dev",
"dev:esm": "rollup -w -c scripts/config.js --environment TARGET:runtime-esm",
"dev:ssr": "rollup -w -c scripts/config.js --environment TARGET:server-renderer",
"dev:compiler": "rollup -w -c scripts/config.js --environment TARGET:compiler ",
2022-04-29 20:23:21 +00:00
"build": "node scripts/build.js",
2022-05-31 07:32:44 +00:00
"build:ssr": "npm run build -- runtime-cjs,server-renderer",
"build:types": "rimraf temp && tsc --declaration --emitDeclarationOnly --outDir temp && api-extractor run && api-extractor run -c packages/compiler-sfc/api-extractor.json",
"test": "npm run ts-check && npm run test:types && npm run test:unit && npm run test:e2e && npm run test:ssr && npm run test:sfc",
2022-05-20 08:55:05 +00:00
"test:unit": "vitest run test/unit",
2022-05-31 07:32:44 +00:00
"test:ssr": "npm run build:ssr && vitest run server-renderer",
"test:sfc": "vitest run compiler-sfc",
2022-05-31 07:32:44 +00:00
"test:e2e": "npm run build -- full-prod,server-renderer-basic && vitest run test/e2e",
2022-05-23 07:15:29 +00:00
"test:transition": "karma start test/transition/karma.conf.js",
2022-05-30 13:36:07 +00:00
"test:types": "npm run build:types && tsc -p ./types/tsconfig.json",
2022-05-27 09:27:17 +00:00
"format": "prettier --write --parser typescript \"(src|test|packages|types)/**/*.ts\"",
2022-05-20 06:35:56 +00:00
"ts-check": "tsc -p tsconfig.json --noEmit",
"ts-check:test": "tsc -p test/tsconfig.json --noEmit",
2022-04-29 20:23:21 +00:00
"bench:ssr": "npm run build:ssr && node benchmarks/ssr/renderToString.js && node benchmarks/ssr/renderToStream.js",
2022-05-31 09:17:14 +00:00
"release": "node scripts/release.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
2022-04-29 20:23:21 +00:00
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verify-commit-msg.js"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.ts": [
"prettier --parser=typescript --write"
2022-04-29 20:23:21 +00:00
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/vue.git"
},
"keywords": [
"vue"
],
"author": "Evan You",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuejs/vue/issues"
},
"homepage": "https://github.com/vuejs/vue#readme",
2022-05-31 07:32:44 +00:00
"dependencies": {
2022-06-09 06:39:18 +00:00
"@vue/compiler-sfc": "workspace:*",
"csstype": "^3.1.0"
2022-05-31 07:32:44 +00:00
},
2022-04-29 20:23:21 +00:00
"devDependencies": {
2022-06-14 07:35:30 +00:00
"@babel/parser": "^7.18.4",
"@microsoft/api-extractor": "^7.25.0",
2022-04-29 20:23:21 +00:00
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
2022-04-29 20:23:21 +00:00
"@rollup/plugin-replace": "^4.0.0",
2022-04-30 08:07:01 +00:00
"@types/he": "^1.1.2",
"@types/node": "^17.0.41",
"chalk": "^4.1.2",
2022-05-31 09:17:14 +00:00
"conventional-changelog-cli": "^2.2.2",
2022-04-29 20:23:21 +00:00
"cross-spawn": "^7.0.3",
2022-05-31 09:17:14 +00:00
"enquirer": "^2.3.6",
"esbuild": "^0.16.0",
"execa": "^4.1.0",
2022-05-19 08:39:05 +00:00
"he": "^1.2.0",
"jasmine-core": "^4.2.0",
2022-05-19 10:21:26 +00:00
"jsdom": "^19.0.0",
2022-05-23 07:15:29 +00:00
"karma": "^6.3.20",
"karma-chrome-launcher": "^3.1.1",
"karma-cli": "^2.0.0",
"karma-esbuild": "^2.2.5",
2022-05-23 07:15:29 +00:00
"karma-jasmine": "^5.0.1",
"lint-staged": "^12.5.0",
2022-04-29 20:23:21 +00:00
"lodash": "^4.17.21",
"marked": "^4.0.16",
2022-05-31 09:17:14 +00:00
"minimist": "^1.2.6",
2022-06-14 07:35:30 +00:00
"postcss": "^8.4.14",
2022-05-20 10:21:53 +00:00
"prettier": "^2.6.2",
"puppeteer": "^14.3.0",
2022-05-30 13:36:07 +00:00
"rimraf": "^3.0.2",
2022-10-11 09:39:59 +00:00
"rollup": "^2.79.1",
"rollup-plugin-typescript2": "^0.32.0",
2022-05-31 09:17:14 +00:00
"semver": "^7.3.7",
2022-04-29 20:23:21 +00:00
"shelljs": "^0.8.5",
"terser": "^5.14.0",
2022-05-20 10:21:53 +00:00
"todomvc-app-css": "^2.4.2",
"ts-node": "^10.8.1",
2022-04-29 20:23:21 +00:00
"tslib": "^2.4.0",
2022-10-11 09:39:59 +00:00
"typescript": "^4.8.4",
"vitest": "^0.34.6",
2022-04-29 20:23:21 +00:00
"yorkie": "^2.0.0"
}
}