forgejo-notifications-core/package.json

63 lines
1.6 KiB
JSON
Raw Normal View History

2023-09-16 15:12:35 +05:30
{
2023-09-19 04:10:21 +05:30
"author": "Aravinth Manivannan <realaravinth@batsense.net>",
"description": "JS library to interact with Forgejo API to work with notification",
"version": "0.1.0-alpha-1",
"license": "AGPL-3.0-or-later",
"type": "module",
"module": "dist/web.js",
"main": "dist/web.js",
"keywords": [
"Forgejo",
"ForgeFlux"
],
"homepage": "https://forgejo-notifications-core.docs.forgeflux.org/",
"files": [
2023-09-19 05:24:43 +05:30
"dist/web.js",
"dist/web.js.map",
2023-09-19 04:10:21 +05:30
"package.json",
"pnpm-lock.yaml"
],
"bugs": {
"url": "https://git.batsense.net/realaravinth/forgejo-notifications-core/issues",
"email": "realaravinth@batsense.net"
},
"funding": [
{
"type": "individual",
"url": "http://batsense.net/donate"
},
{
"type": "liberapay",
"url": "https://liberapay.com/realaravinth"
}
],
"repository": {
"type": "git",
"url": "https://git.batsense.net/realaravinth/forgejo-notifications-core/"
},
2023-09-16 15:12:35 +05:30
"name": "forgejo-notifications-core",
"scripts": {
2023-09-19 05:24:43 +05:30
"build": "swc ./src/index.ts -o ./dist/index.js && spack --config ./spack.config.cjs",
2023-09-18 20:26:57 +05:30
"lint": "prettier --write ./src/*",
2023-09-16 15:12:35 +05:30
"test": "jest",
2023-09-19 03:09:44 +05:30
"doc": "typedoc ./src/index.ts"
2023-09-16 15:12:35 +05:30
},
"devDependencies": {
2023-09-18 17:56:31 +05:30
"@jest/globals": "^29.7.0",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.85",
"@swc/jest": "^0.2.29",
"@types/jest": "^29.5.5",
"@types/node": "^20.6.2",
2023-09-16 15:12:35 +05:30
"jest": "^29.7.0",
2023-09-18 19:05:53 +05:30
"jest-environment-jsdom": "^29.7.0",
2023-09-18 17:56:31 +05:30
"jsdom": "^22.1.0",
2023-09-18 20:26:57 +05:30
"prettier": "3.0.3",
2023-09-18 17:56:31 +05:30
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
2023-09-18 20:43:46 +05:30
"typedoc": "^0.25.1",
2023-09-18 19:05:53 +05:30
"typescript": "^5.2.2",
"whatwg-fetch": "^3.6.19"
2023-09-16 15:12:35 +05:30
}
}