slint/api/node/package.json
Tobias Hunger d93445bd0b docs: Remove inline langref documentation and link the mdbook
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.
2023-02-07 12:10:07 +01:00

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"
}
}