facilmap/utils/package.json

60 wiersze
1.5 KiB
JSON
Czysty Zwykły widok Historia

2021-02-28 22:17:26 +00:00
{
"name": "facilmap-utils",
2021-06-27 14:05:18 +00:00
"version": "3.4.0",
2021-02-28 22:17:26 +00:00
"description": "FacilMap helper functions used in both the frontend and backend.",
"keywords": [
"facilmap"
],
2021-04-04 13:35:31 +00:00
"homepage": "https://github.com/FacilMap/facilmap",
2021-02-28 22:17:26 +00:00
"bugs": {
2021-04-04 13:35:31 +00:00
"url": "https://github.com/FacilMap/facilmap/issues"
2021-02-28 22:17:26 +00:00
},
"license": "AGPL-3.0",
"author": "Candid Dauth <cdauth@cdauth.eu>",
2023-09-24 21:00:38 +00:00
"main": "./dist/facilmap-utils.mjs",
"type": "module",
2023-09-24 21:00:38 +00:00
"types": "./dist/facilmap-utils.d.ts",
2021-02-28 22:17:26 +00:00
"repository": {
"type": "git",
2021-04-04 13:35:31 +00:00
"url": "https://github.com/FacilMap/facilmap.git"
2021-02-28 22:17:26 +00:00
},
"scripts": {
2023-09-24 21:00:38 +00:00
"build": "vite build",
"watch": "vite build --watch",
"clean": "rimraf dist",
"check-types": "tsc -b --emitDeclarationOnly",
"test": "vitest run",
"test-watch": "vitest"
2021-02-28 22:17:26 +00:00
},
2021-04-10 00:12:28 +00:00
"files": [
"dist",
2021-04-10 00:12:28 +00:00
"src",
"README.md",
"tsconfig.json"
],
2021-02-28 22:17:26 +00:00
"dependencies": {
"cheerio": "^1.0.0-rc.12",
2023-10-06 23:13:51 +00:00
"dompurify": "^3.0.6",
"facilmap-types": "workspace:^",
"filtrex": "^2.2.3",
2023-10-02 03:23:22 +00:00
"jquery": "^3.7.1",
2023-12-26 11:24:03 +00:00
"jsdom": "^23.0.1",
"linkify-string": "^4.1.3",
"linkifyjs": "^4.1.3",
2023-11-07 01:19:20 +00:00
"lodash-es": "^4.17.21",
2023-12-26 11:24:03 +00:00
"marked": "^11.1.0"
2021-02-28 22:17:26 +00:00
},
"devDependencies": {
2023-12-26 11:24:03 +00:00
"@types/cheerio": "^0.22.35",
2023-11-11 07:01:40 +00:00
"@types/dompurify": "^3.0.5",
2023-12-26 11:24:03 +00:00
"@types/jquery": "^3.5.29",
"@types/jsdom": "^21.1.6",
2023-11-11 07:01:40 +00:00
"@types/linkifyjs": "^2.1.7",
2023-10-06 23:13:51 +00:00
"rimraf": "^5.0.5",
2023-12-26 11:24:03 +00:00
"typescript": "^5.3.3",
2024-01-22 03:40:13 +00:00
"vite": "^5.0.12",
2023-12-26 11:24:03 +00:00
"vite-plugin-dts": "^3.7.0",
"vitest": "^1.1.0"
2021-02-28 22:17:26 +00:00
}
}