smartfeed/package.json

62 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2020-10-25 00:09:33 +00:00
{
2023-07-10 00:55:49 +00:00
"name": "@push.rocks/smartfeed",
2020-12-10 17:33:02 +00:00
"version": "1.0.11",
2020-10-25 00:09:33 +00:00
"private": false,
2024-04-14 15:35:04 +00:00
"description": "A library for creating and parsing various feed formats.",
2020-10-25 00:09:33 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
"build": "(tsbuild --web)"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.25",
"@gitzone/tsbundle": "^1.0.78",
"@gitzone/tstest": "^1.0.44",
2020-11-28 14:38:04 +00:00
"@pushrocks/smartfile": "^8.0.8",
2020-10-25 00:09:33 +00:00
"@pushrocks/tapbundle": "^3.2.9",
2020-12-10 17:33:01 +00:00
"@types/node": "^14.14.12",
2020-10-25 00:09:33 +00:00
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.15.0"
},
2020-10-25 14:02:03 +00:00
"dependencies": {
2020-10-31 11:38:41 +00:00
"@tsclass/tsclass": "^3.0.29",
2020-10-25 22:11:00 +00:00
"feed": "^4.2.1",
2020-12-10 17:33:01 +00:00
"rss-parser": "^3.10.0"
2020-10-25 14:02:03 +00:00
},
2020-10-25 00:09:33 +00:00
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2024-04-14 15:35:04 +00:00
],
"keywords": [
"RSS",
"Atom",
"feeds creation",
"feeds parsing",
"TypeScript",
"content syndication",
"RSS parser",
"feed generator",
"news feed",
"XML feeds",
"JSON feeds"
2024-05-29 12:13:06 +00:00
],
"homepage": "https://code.foss.global/push.rocks/smartfeed",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartfeed.git"
}
2023-07-10 00:55:49 +00:00
}