zotero/package.json
Dan Stillman 5791ffeb16 Reactify item tags box
Improvements:

- Fixes autocomplete text remaining in field after selection in Fx60
- No more text or icon shifting on select (tested on macOS)

Changes:

- Tags are now selected on mousedown with no active state, as in web
  library

Regressions:

- Tooltip with tag type doesn't appear when hovering over icon
- Pressing Tab after modifying a tag loses focus
- Right-click in textbox shows custom menu instead of default text
  editing context menu (Cut/Copy/Paste)

To-do:

- Switch to this version for note tags box
- Style colored tags in autocomplete drop-down? Sort to top?
- Only show delete button on row hover, as in web library?
2019-11-08 06:41:06 -05:00

55 lines
1.6 KiB
JSON

{
"name": "zotero",
"private": "private",
"version": "5.0.0",
"description": "Zotero",
"main": "",
"scripts": {
"start": "node ./scripts/build.js && node ./scripts/watch.js",
"build": "node ./scripts/build.js",
"sass": "node ./scripts/sass.js",
"js": "node ./scripts/js.js",
"clean": "node ./scripts/clean.js",
"clean-build": "node ./scripts/clean.js && node ./scripts/build.js",
"clean-start": "node ./scripts/clean.js && node ./scripts/build.js && node ./scripts/watch.js"
},
"license": "",
"dependencies": {
"bluebird": "^3.5.1",
"classnames": "^2.2.6",
"prop-types": "^15.7.2",
"react": "^16.11.0",
"react-autosuggest": "^9.4.3",
"react-dom": "^16.11.0",
"react-intl": "^3.4.0",
"react-select": "^3.0.8",
"url": "^0.11.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/preset-react": "^7.0.0",
"@zotero/eslint-config": "^1.0.3",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"browserify": "^14.5.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chokidar": "^2.1.2",
"co-mocha": "^1.2.1",
"colors": "^1.1.2",
"eslint": "^5.14.1",
"eslint-plugin-react": "^7.12.4",
"fs-extra": "^3.0.1",
"globby": "^6.1.0",
"jspath": "^0.4.0",
"mocha": "^3.5.3",
"multimatch": "^2.1.0",
"node-sass": "^4.12.0",
"react-virtualized": "^9.21.0",
"sinon": "^7.3.2",
"universalify": "^0.1.1"
}
}