mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-13 20:53:30 +01:00
40 lines
1016 B
JSON
40 lines
1016 B
JSON
{
|
|
"name": "@yaakapp/api",
|
|
"version": "0.7.1",
|
|
"keywords": [
|
|
"api-client",
|
|
"insomnia-alternative",
|
|
"bruno-alternative",
|
|
"postman-alternative"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/mountain-loop/yaak"
|
|
},
|
|
"bugs": {
|
|
"url": "https://feedback.yaak.app"
|
|
},
|
|
"homepage": "https://yaak.app",
|
|
"main": "lib/index.js",
|
|
"typings": "./lib/index.d.ts",
|
|
"files": [
|
|
"lib/**/*"
|
|
],
|
|
"scripts": {
|
|
"bootstrap": "npm run build",
|
|
"build": "run-s build:copy-types build:tsc",
|
|
"build:tsc": "tsc",
|
|
"build:copy-types": "run-p build:copy-types:*",
|
|
"build:copy-types:root": "cpy --flat ../../crates/yaak-plugins/bindings/*.ts ./src/bindings",
|
|
"build:copy-types:next": "cpy --flat ../../crates/yaak-plugins/bindings/serde_json/*.ts ./src/bindings/serde_json",
|
|
"publish": "npm publish",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"dependencies": {
|
|
"@types/node": "^24.0.13"
|
|
},
|
|
"devDependencies": {
|
|
"cpy-cli": "^5.0.0"
|
|
}
|
|
}
|