mirror of
https://github.com/lowdefy/lowdefy.git
synced 2025-03-25 15:10:33 +08:00
58 lines
1.2 KiB
JSON
58 lines
1.2 KiB
JSON
{
|
|
"name": "@lowdefy/connection-axios-http",
|
|
"version": "4.0.0-alpha.0",
|
|
"licence": "Apache-2.0",
|
|
"description": "",
|
|
"homepage": "https://lowdefy.com",
|
|
"keywords": [
|
|
"lowdefy",
|
|
"lowdefy connection"
|
|
],
|
|
"bugs": {
|
|
"url": "https://github.com/lowdefy/lowdefy/issues"
|
|
},
|
|
"contributors": [
|
|
{
|
|
"name": "Sam Tolmay",
|
|
"url": "https://github.com/SamTolmay"
|
|
},
|
|
{
|
|
"name": "Gerrie van Wyk",
|
|
"url": "https://github.com/Gervwyk"
|
|
}
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/lowdefy/lowdefy.git"
|
|
},
|
|
"type": "module",
|
|
"exports": {
|
|
"./connections": "./dist/connections.js",
|
|
"./types": "./dist/types.js"
|
|
},
|
|
"files": [
|
|
"dist/*"
|
|
],
|
|
"scripts": {
|
|
"build": "yarn swc",
|
|
"clean": "rm -rf dist",
|
|
"prepare": "yarn build",
|
|
"swc": "swc src --out-dir dist --config-file ../../../../.swcrc --delete-dir-on-start --copy-files",
|
|
"test": "jest --coverage"
|
|
},
|
|
"dependencies": {
|
|
"@lowdefy/helpers": "4.0.0-alpha.0",
|
|
"axios": "0.23.0"
|
|
},
|
|
"devDependencies": {
|
|
"@lowdefy/ajv": "4.0.0-alpha.0",
|
|
"@swc/cli": "0.1.52",
|
|
"@swc/core": "1.2.112",
|
|
"@swc/jest": "0.2.9",
|
|
"jest": "27.3.1"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|