slint/api/node/package.json
dependabot[bot] e659a686ea build(deps-dev): bump @ava/typescript from 4.1.0 to 5.0.0
Bumps [@ava/typescript](https://github.com/avajs/typescript) from 4.1.0 to 5.0.0.
- [Release notes](https://github.com/avajs/typescript/releases)
- [Commits](https://github.com/avajs/typescript/compare/v4.1.0...v5.0.0)

---
updated-dependencies:
- dependency-name: "@ava/typescript"
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-11-25 09:54:42 +01:00

69 lines
2 KiB
JSON

{
"name": "slint-ui",
"version": "1.9.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/slint-ui/slint",
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "https://github.com/slint-ui/slint"
},
"keywords": [
"GUI",
"UI",
"native",
"node",
"Slint",
"desktop",
"embedded"
],
"description": "Slint is a declarative GUI toolkit to build native user interfaces for desktop and embedded applications.",
"devDependencies": {
"@ava/typescript": "5.0.0",
"@biomejs/biome": "1.9.4",
"@types/capture-console": "1.0.5",
"@types/node": "20.16.10",
"ava": "6.2.0",
"capture-console": "1.0.2",
"jimp": "1.6.0",
"ts-node": "10.9.2",
"typedoc": "0.25.13",
"typescript": "5.2.2"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"artifacts": "napi artifacts",
"compile": "tsc --build",
"build": "napi build --platform --release --js rust-module.cjs --dts rust-module.d.ts -c binaries.json",
"build:debug": "napi build --platform --js rust-module.cjs --dts rust-module.d.ts -c binaries.json && pnpm compile",
"build:testing": "napi build --platform --js rust-module.cjs --dts rust-module.d.ts -c binaries.json --features testing && pnpm compile",
"install": "node build-on-demand.mjs",
"docs": "pnpm build && typedoc --hideGenerator --treatWarningsAsErrors --readme cover.md typescript/index.ts",
"check": "biome check",
"format": "biome format",
"format:fix": "biome format --write",
"lint": "biome lint",
"lint:fix": "biome lint --fix",
"test": "ava",
"type-check": "tsc --noEmit"
},
"ava": {
"extensions": {
"mts": "module"
},
"nodeArguments": [
"--loader=ts-node/esm"
],
"timeout": "2m",
"environmentVariables": {
"TS_NODE_PROJECT": "./__test__/tsconfig.json"
},
"workerThreads": false
},
"dependencies": {
"@napi-rs/cli": "2.16.5"
}
}