@linode/api-v4
Version:
JavaScript wrapper around the Linode APIv4
72 lines • 1.78 kB
JSON
{
"name": "@linode/api-v4",
"version": "0.138.0",
"homepage": "https://github.com/linode/manager/tree/develop/packages/api-v4",
"bugs": {
"url": "https://github.com/linode/manager/issues"
},
"keywords": [
"linode",
"api",
"sdk",
"api-v4"
],
"repository": {
"type": "git",
"url": "https://github.com/linode/manager/tree/develop/packages/api-v4"
},
"description": "JavaScript wrapper around the Linode APIv4",
"author": "Linode",
"license": "Apache-2.0",
"private": false,
"type": "module",
"main": "lib/index.cjs",
"module": "lib/index.js",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"./lib": {
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"./lib/*": {
"import": "./lib/index.js",
"require": "./lib/index.cjs"
}
},
"types": "./lib/index.d.ts",
"browser": "./lib/index.global.js",
"unpkg": "./lib/index.global.js",
"dependencies": {
"axios": "~1.8.3",
"ipaddr.js": "^2.0.0",
"yup": "^1.4.0",
"@linode/validation": "0.64.0"
},
"files": [
"lib"
],
"devDependencies": {
"axios-mock-adapter": "^1.22.0",
"concurrently": "^9.0.1",
"tsup": "^8.4.0"
},
"lint-staged": {
"*.{ts,tsx,js}": [
"prettier --write",
"eslint --ext .js,.ts,.tsx"
],
".{ts,tsx}": [
"tsc -p tsconfig.json --noEmit true --emitDeclarationOnly false"
]
},
"scripts": {
"start": "concurrently --raw \"tsc -w --preserveWatchOutput\" \"tsup --watch\"",
"build": "concurrently --raw \"tsc\" \"tsup\"",
"test": "vitest run",
"lint": "eslint . --quiet --ext .js,.ts,.tsx",
"typecheck": "tsc --noEmit true --emitDeclarationOnly false"
}
}