bismuth/package.json

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

82 lines
2.3 KiB
JSON
Raw Normal View History

2019-04-03 17:57:45 +03:00
{
2021-08-28 11:20:19 +03:00
"name": "bismuth",
2021-11-08 14:34:59 +03:00
"version": "2.0.1",
2019-04-03 17:57:45 +03:00
"description": "A dynamic tiling extension for KWin",
2021-09-10 22:35:15 +03:00
"private": true,
2019-04-03 17:57:45 +03:00
"devDependencies": {
"@types/jest": "^27.0.1",
2021-08-28 00:18:12 +03:00
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"esbuild": "^0.12.26",
2021-08-28 00:18:12 +03:00
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsdoc": "^36.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.0.0",
2021-09-04 18:58:27 +03:00
"husky": "^7.0.2",
"jest": "^27.2.0",
"jest-ts-auto-mock": "^2.0.0",
2021-09-04 20:22:18 +03:00
"lint-staged": "^11.1.2",
2021-08-27 23:06:44 +03:00
"prettier": "2.3.2",
"ts-auto-mock": "^3.5.0",
"ts-jest": "^27.0.5",
"ttypescript": "^1.5.12",
2021-08-27 22:40:16 +03:00
"typedoc": "^0.21.6",
"typedoc-plugin-rename-defaults": "^0.3.0",
"typescript": "^4.4.3"
2019-04-03 17:57:45 +03:00
},
"scripts": {
2021-11-01 19:09:12 +03:00
"clean": "scripts/clean.sh",
"build": "scripts/build.sh",
"sysdep-install": "scripts/sysdep-install.sh",
2021-11-01 22:32:06 +03:00
"prebi-install": "npm run build",
"bi-install": "scripts/install.sh",
"bi-uninstall": "scripts/uninstall.sh",
"preinstall-and-restart-kwin-x11": "npm run script-install",
"install-and-restart-kwin-x11": "kwin_x11 --replace",
"postinstall-and-restart-kwin-x11": "bash -ic \"kwin_x11 --replace & disown\"",
2021-11-03 16:39:43 +03:00
"docs": "npx typedoc --out build/docs",
"test": "jest",
"prepare": "husky install"
2019-04-03 17:57:45 +03:00
},
"repository": {
"type": "git",
2021-08-28 11:20:19 +03:00
"url": "git+https://github.com/gikari/bismuth.git"
2019-04-03 17:57:45 +03:00
},
"author": "Mikhail Zolotukhin <mail@genda.life> (https://genda.life)",
2021-08-28 11:20:19 +03:00
"contributors": [
"Mikhail Zolotukhin <mail@genda.life> (https://genda.life)",
"Eon S. Jeon <esjeon@hyunmu.am>"
2021-08-28 11:20:19 +03:00
],
2019-04-03 17:57:45 +03:00
"license": "MIT",
"bugs": {
2021-08-28 11:20:19 +03:00
"url": "https://github.com/gikari/bismuth/issues"
2019-04-03 17:57:45 +03:00
},
2021-08-28 11:20:19 +03:00
"homepage": "https://github.com/gikari/bismuth#readme",
"jest": {
"preset": "ts-jest",
"transform": {
".(ts|tsx)": "ts-jest"
},
"testEnvironment": "node",
"globals": {
"ts-jest": {
"compiler": "ttypescript",
"setupFiles": [
"<rootDir>config.ts"
],
"diagnostics": {
"ignoreCodes": [
"TS151001"
]
}
}
}
},
"prettier": {},
2021-09-04 20:22:18 +03:00
"lint-staged": {
2021-11-02 21:55:08 +03:00
"**/*": "prettier --write --ignore-unknown",
"**/*.qml": "qmlformat"
2021-08-28 00:18:12 +03:00
}
}