SourceTermAnalysisSystem_vue/node_modules/make-synchronized/package.json
2026-05-15 10:22:44 +08:00

94 lines
2.7 KiB
JSON

{
"name": "make-synchronized",
"version": "0.2.10",
"homepage": "https://github.com/fisker/make-synchronized#readme",
"bugs": {
"url": "https://github.com/fisker/make-synchronized/issues"
},
"repository": "fisker/make-synchronized",
"funding": "https://github.com/fisker/make-synchronized?sponsor=1",
"license": "MIT",
"author": {
"name": "fisker Cheung",
"email": "lionkay@gmail.com",
"url": "https://www.fiskercheung.com/"
},
"sideEffects": false,
"type": "module",
"exports": {
".": {
"require": "./index.cjs",
"default": "./index.mjs"
}
},
"main": "index.cjs",
"files": [
"index.mjs",
"index.cjs",
"worker.mjs"
],
"scripts": {
"build": "node scripts/build.js",
"clean": "run-p \"clean:*\"",
"clean:dist": "del-cli dist",
"dist": "run-p \"dist:*\"",
"dist:npm": "release-it",
"lint": "run-p --continue-on-error \"lint:*\"",
"lint:eslint": "eslint .",
"lint:markdown": "markdownlint-cli2",
"lint:package-json": "yarn run fix:package-json --check",
"lint:prettier": "prettier . --check",
"lint:types": "tsc",
"test": "run-s test:development test:production-esm test:production-cjs",
"test:development": "node --test",
"test:production-esm": "yarn build && cross-env DIST_TEST_TYPE=esm node --test",
"test:production-cjs": "yarn build && cross-env DIST_TEST_TYPE=cjs node --test",
"test-coverage": "c8 yarn test",
"release": "run-s build lint fix dist",
"prepare": "husky install",
"fix": "run-p --continue-on-error \"fix:*\"",
"fix:eslint": "yarn lint:eslint --fix",
"fix:markdown": "yarn lint:markdown --fix",
"fix:prettier": "prettier . --write",
"fix:package-json": "sort-package-json \"package.json\" \"packages/*/package.json\""
},
"c8": {
"all": true,
"include": [
"source"
],
"reporter": [
"lcov",
"text"
]
},
"devDependencies": {
"@fisker/eslint-config": "14.0.0",
"@fisker/lint-staged-config": "3.3.5",
"@fisker/markdownlint-cli2-config": "0.0.3",
"@fisker/prettier-config": "5.1.5",
"@types/node": "22.13.10",
"c8": "10.1.3",
"cross-env": "7.0.3",
"del-cli": "6.0.0",
"esbuild": "0.25.1",
"eslint": "9.22.0",
"husky": "9.1.7",
"lint-staged": "15.5.0",
"markdownlint-cli2": "0.17.2",
"nano-spawn": "0.2.0",
"npm-run-all2": "7.0.2",
"prettier": "3.5.3",
"release-it": "18.1.2",
"sort-package-json": "3.0.0",
"strip-ansi": "7.1.0",
"tempy": "3.1.0",
"typescript": "5.8.2"
},
"packageManager": "yarn@4.7.0",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}