2019-04-03 17:57:45 +03:00
|
|
|
{
|
2021-08-28 11:20:19 +03:00
|
|
|
"name": "bismuth",
|
2021-10-03 02:26:31 +03:00
|
|
|
"version": "1.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
|
|
|
"directories": {
|
2021-08-26 22:32:59 +03:00
|
|
|
"build": "build",
|
2019-04-03 17:57:45 +03:00
|
|
|
"test": "test"
|
|
|
|
},
|
2021-08-26 22:32:59 +03:00
|
|
|
"config": {
|
|
|
|
"build_dir": "build"
|
|
|
|
},
|
2019-04-03 17:57:45 +03:00
|
|
|
"devDependencies": {
|
2021-09-04 22:06:38 +03:00
|
|
|
"@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",
|
2021-09-10 22:37:04 +03:00
|
|
|
"esbuild": "^0.12.26",
|
2021-08-28 00:18:12 +03:00
|
|
|
"eslint": "^7.32.0",
|
|
|
|
"eslint-config-prettier": "^8.3.0",
|
2021-09-16 18:28:40 +03:00
|
|
|
"eslint-plugin-jsdoc": "^36.1.0",
|
|
|
|
"eslint-plugin-prefer-arrow": "^1.2.3",
|
2021-09-30 18:46:05 +03:00
|
|
|
"eslint-plugin-prettier": "^4.0.0",
|
2021-09-04 18:58:27 +03:00
|
|
|
"husky": "^7.0.2",
|
2021-09-15 20:18:23 +03:00
|
|
|
"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",
|
2021-09-15 20:18:23 +03:00
|
|
|
"ts-auto-mock": "^3.5.0",
|
2021-09-04 22:06:38 +03:00
|
|
|
"ts-jest": "^27.0.5",
|
2021-09-15 20:18:23 +03:00
|
|
|
"ttypescript": "^1.5.12",
|
2021-08-27 22:40:16 +03:00
|
|
|
"typedoc": "^0.21.6",
|
2021-09-07 13:32:00 +03:00
|
|
|
"typedoc-plugin-rename-defaults": "^0.3.0",
|
2021-09-15 20:18:23 +03:00
|
|
|
"typescript": "^4.4.3"
|
2019-04-03 17:57:45 +03:00
|
|
|
},
|
|
|
|
"scripts": {
|
2021-08-26 22:32:59 +03:00
|
|
|
"clean": "bin/clean.sh",
|
|
|
|
"build": "bin/build.sh",
|
|
|
|
"prestart": "npm run build",
|
|
|
|
"start": "bin/start.sh",
|
|
|
|
"stop": "bin/stop.sh",
|
|
|
|
"prepackage": "npm run build",
|
|
|
|
"package": "bin/package.sh",
|
2021-08-28 14:18:47 +03:00
|
|
|
"prescript-install": "npm run package",
|
2021-08-28 13:38:41 +03:00
|
|
|
"script-install": "bin/install.sh",
|
|
|
|
"script-uninstall": "bin/uninstall.sh",
|
2021-09-03 22:02:14 +03:00
|
|
|
"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-08-27 19:57:11 +03:00
|
|
|
"docs": "npx typedoc --out $npm_package_config_build_dir/docs",
|
2021-09-04 22:06:38 +03:00
|
|
|
"test": "jest",
|
2021-09-04 18:58:27 +03:00
|
|
|
"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": "Eon S. Jeon <esjeon@hyunmu.am>",
|
2021-08-28 11:20:19 +03:00
|
|
|
"contributors": [
|
|
|
|
"Mikhail Zolotukhin <mail@genda.life> (https://genda.life)"
|
|
|
|
],
|
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",
|
2021-09-04 22:06:38 +03:00
|
|
|
"jest": {
|
|
|
|
"preset": "ts-jest",
|
2021-09-15 20:18:23 +03:00
|
|
|
"transform": {
|
|
|
|
".(ts|tsx)": "ts-jest"
|
|
|
|
},
|
2021-09-04 22:27:13 +03:00
|
|
|
"testEnvironment": "node",
|
|
|
|
"globals": {
|
|
|
|
"ts-jest": {
|
2021-09-15 20:18:23 +03:00
|
|
|
"compiler": "ttypescript",
|
|
|
|
"setupFiles": [
|
|
|
|
"<rootDir>config.ts"
|
|
|
|
],
|
2021-09-04 22:27:13 +03:00
|
|
|
"diagnostics": {
|
|
|
|
"ignoreCodes": [
|
|
|
|
"TS151001"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-09-04 22:06:38 +03:00
|
|
|
},
|
2021-09-04 16:33:51 +03:00
|
|
|
"prettier": {},
|
2021-09-04 20:22:18 +03:00
|
|
|
"lint-staged": {
|
|
|
|
"**/*": "prettier --write --ignore-unknown"
|
2021-08-28 00:18:12 +03:00
|
|
|
}
|
2021-09-04 16:33:51 +03:00
|
|
|
}
|