mirror of
https://github.com/slint-ui/slint.git
synced 2025-12-23 09:19:32 +00:00
For node and cpp, I use relative links to point to the slint language reference documentation. For the slint crate documentation I create a link to https://slint-ui.com/releases/VERSION/... instead: This needs to work from docs.rs as well as from our own docs area on slint-ui.com! That is pretty ugly: I can not even define constants for this as the crate docs need to come before anything else.
25 lines
666 B
JSON
25 lines
666 B
JSON
{
|
|
"name": "slint-ui",
|
|
"version": "1.0.0",
|
|
"homepage": "https://github.com/slint-ui/slint",
|
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/slint-ui/slint"
|
|
},
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"dependencies": {
|
|
"@types/node": "^14.11.11",
|
|
"neon-cli": "^0.4",
|
|
"typescript": "^4.0.3"
|
|
},
|
|
"scripts": {
|
|
"install": "neon build --release && tsc",
|
|
"build": "tsc",
|
|
"docs": "typedoc --hideGenerator --readme cover.md lib/index.ts"
|
|
},
|
|
"devDependencies": {
|
|
"typedoc": "^0.19.2"
|
|
}
|
|
}
|