mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-10 06:04:15 +00:00
3ae9cf0420
* start converting * small fixes * reorganize theme files * cleanup search bar * increase spacing * small tweaks * fix select styles in Chrome * cleanup menus * improve button icons * restore badges * remove unused classes * restore some overrides * restore bookmark form * add summary outline * avoid layout shifts * restore bookmark details * increase border radius for modals * improve details modal * restore reader mode * restore settings * cleanup variables * start with dark theme * more dark theme... * more light theme... * more dark theme... * add postcss build * remove sass processor * update docker build * fix alt color * remove endless symbol * fix tests * update assets * remove sass files * fix docker build * cleanup spacing * improve theme * update test scripts * update CI workflow * fix test
41 lines
1.2 KiB
JSON
41 lines
1.2 KiB
JSON
{
|
|
"name": "linkding",
|
|
"version": "1.32.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "npm run build-js && npm run build-theme-light && npm run build-theme-dark",
|
|
"build-js": "rollup -c",
|
|
"build-theme-light": "postcss -o bookmarks/static/theme-light.css bookmarks/styles/theme-light.css",
|
|
"build-theme-dark": "postcss -o bookmarks/static/theme-dark.css bookmarks/styles/theme-dark.css",
|
|
"dev": "rollup -c -w"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/sissbruecker/linkding.git"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/sissbruecker/linkding/issues"
|
|
},
|
|
"homepage": "https://github.com/sissbruecker/linkding#readme",
|
|
"dependencies": {
|
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
"@rollup/plugin-terser": "^0.4.4",
|
|
"@rollup/wasm-node": "^4.13.0",
|
|
"cssnano": "^7.0.6",
|
|
"postcss": "^8.4.45",
|
|
"postcss-cli": "^11.0.0",
|
|
"postcss-import": "^16.1.0",
|
|
"postcss-nesting": "^13.0.0",
|
|
"rollup-plugin-svelte": "^7.2.0",
|
|
"spectre.css": "^0.5.8",
|
|
"svelte": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"prettier": "^3.0.2"
|
|
},
|
|
"web-types": "./web-types.json"
|
|
}
|