Aether/common/package.json

46 lines
1.0 KiB
JSON

{
"name": "@aether/common-build",
"version": "0.0.1",
"private": true,
"description": "Builds common definitions and utilities for the Aether Mail software. DO NOT DEPEND ON.",
"main": "build/Main.js",
"scripts": {
"dev": "nodemon",
"build": "tsc --project tsconfig.json --incremental",
"clean": "find build -name '*' -not -name 'package.json' -not -path 'build/node_modules*' -not -name 'build' -delete"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Aurailus/Aether.git"
},
"keywords": [
"mail",
"email",
"cloud",
"aether"
],
"author": "Auri Collings <me@auri.xyz>",
"license": "UNLICENSED",
"nodemonConfig": {
"watch": [
"src"
],
"ext": ".ts,.tsx,.html",
"exec": "npm run build",
"quiet": true
},
"bugs": {
"url": "https://github.com/Aurailus/Aether/issues"
},
"homepage": "https://github.com/Aurailus/Aether#readme",
"devDependencies": {
"electron": "^13.1.2",
"nodemon": "^2.0.7",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"dependencies": {
"tslib": "^2.2.0"
}
}