mirror of
https://github.com/krisk/Fuse.git
synced 2026-01-25 16:43:11 +00:00
100 lines
2.9 KiB
JSON
100 lines
2.9 KiB
JSON
{
|
|
"name": "fuse.js",
|
|
"author": {
|
|
"name": "Kiro Risk",
|
|
"email": "kirollos@gmail.com",
|
|
"url": "http://kiro.me"
|
|
},
|
|
"main": "./dist/fuse.common.js",
|
|
"module": "./dist/fuse.esm.js",
|
|
"unpkg": "./dist/fuse.js",
|
|
"jsdelivr": "./dist/fuse.js",
|
|
"typings": "./dist/fuse.d.ts",
|
|
"sideEffects": false,
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"version": "6.6.2",
|
|
"description": "Lightweight fuzzy-search",
|
|
"license": "Apache-2.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/krisk/Fuse.git"
|
|
},
|
|
"homepage": "http://fusejs.io",
|
|
"keywords": [
|
|
"fuzzy",
|
|
"search",
|
|
"bitap"
|
|
],
|
|
"scripts": {
|
|
"dev": "rollup -w -c scripts/configs.js --environment TARGET:umd-dev-full",
|
|
"dev:cjs": "rollup -w -c scripts/configs.js --environment TARGET:commonjs-full",
|
|
"dev:esm": "rollup -w -c scripts/configs.js --environment TARGET:esm-dev-full",
|
|
"build": "rm -r dist && mkdir dist && node ./scripts/build.main.js",
|
|
"test": "vitest run",
|
|
"lint": "eslint src scripts test",
|
|
"release": "./scripts/release.sh",
|
|
"docs:bump": "node ./scripts/bump-docs.js",
|
|
"docs:dev": "vuepress dev docs",
|
|
"docs:build": "vuepress build docs",
|
|
"docs:release": "./scripts/deploy-docs.sh",
|
|
"postinstall": "husky install",
|
|
"prepack": "yarn build && pinst --disable",
|
|
"postpack": "pinst --enable"
|
|
},
|
|
"standard-version": {
|
|
"scripts": {
|
|
"postbump": "yarn build && yarn lint && yarn test 2>/dev/null",
|
|
"precommit": "git add dist/*.js dist/*.ts"
|
|
}
|
|
},
|
|
"commitlint": {
|
|
"extends": [
|
|
"@commitlint/config-conventional"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.20.7",
|
|
"@babel/core": "^7.20.12",
|
|
"@babel/eslint-parser": "^7.19.1",
|
|
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
|
|
"@babel/preset-env": "7.20.2",
|
|
"@babel/preset-typescript": "7.18.6",
|
|
"@commitlint/cli": "^17.4.2",
|
|
"@commitlint/config-conventional": "^17.4.2",
|
|
"@rollup/plugin-babel": "^6.0.3",
|
|
"@rollup/plugin-node-resolve": "^15.0.1",
|
|
"@rollup/plugin-replace": "^5.0.2",
|
|
"@vuepress/plugin-google-analytics": "^1.9.8",
|
|
"@vuepress/plugin-register-components": "^1.9.8",
|
|
"babel-loader": "^9.1.2",
|
|
"codemirror": "5.63.3",
|
|
"eslint": "8.32.0",
|
|
"eslint-config-prettier": "8.6.0",
|
|
"eslint-plugin-vue": "8.0.3",
|
|
"faker": "5.5.3",
|
|
"husky": "^8.0.3",
|
|
"pinst": "^3.0.0",
|
|
"prettier": "2.8.3",
|
|
"replace-in-file": "^6.3.5",
|
|
"rollup": "^2.61.1",
|
|
"rollup-plugin-copy": "3.4.0",
|
|
"standard-version": "^9.5.0",
|
|
"terser": "^5.16.1",
|
|
"typescript": "^4.4.4",
|
|
"vitest": "^0.28.1",
|
|
"vue-codemirror": "^4.0.6",
|
|
"vue-eslint-parser": "^8.0.1",
|
|
"vuepress": "^1.4.0",
|
|
"vuepress-plugin-element-tabs": "^0.2.8",
|
|
"vuepress-plugin-google-adsense": "^0.2.1",
|
|
"vuepress-plugin-smooth-scroll": "^0.0.10",
|
|
"vuepress-plugin-social-share": "^1.1.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=10"
|
|
},
|
|
"packageManager": "yarn@3.3.1"
|
|
}
|