lowdefy/packages/build/package.json

60 lines
1.3 KiB
JSON
Raw Normal View History

{
"name": "@lowdefy/build",
2021-09-27 18:04:20 +08:00
"version": "3.22.0",
"licence": "Apache-2.0",
"description": "",
"homepage": "https://lowdefy.com",
"keywords": [
"lowdefy"
],
"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"
},
"main": "dist/index.js",
2020-10-28 18:19:09 +08:00
"files": [
"dist/*"
],
"scripts": {
2021-11-08 20:44:06 +08:00
"build": "yarn swc",
2020-10-23 19:23:57 +08:00
"clean": "rm -rf dist",
2020-10-23 22:44:09 +08:00
"prepare": "yarn build",
2021-10-20 22:34:17 +08:00
"start": "node run.js",
2021-11-08 20:44:06 +08:00
"swc": "swc src --out-dir dist --config-file ../../.swcrc --delete-dir-on-start",
2021-11-08 01:15:51 +08:00
"test": "jest --coverage"
},
"dependencies": {
2021-09-27 18:04:20 +08:00
"@lowdefy/ajv": "3.22.0",
"@lowdefy/helpers": "3.22.0",
"@lowdefy/node-utils": "3.22.0",
"@lowdefy/nunjucks": "3.22.0",
"ajv": "8.6.3",
"axios": "0.23.0",
"js-yaml": "4.1.0",
"json5": "2.2.0",
"uuid": "8.3.2"
},
"devDependencies": {
2021-11-08 01:15:51 +08:00
"@swc/cli": "0.1.51",
"@swc/core": "1.2.107",
"@swc/jest": "0.2.5",
"jest": "27.3.1"
},
"publishConfig": {
"access": "public"
}
}