mirror of
https://git.lucida.su/lucida/verdana.git
synced 2026-07-26 22:42:20 +00:00
38 lines
855 B
JSON
38 lines
855 B
JSON
{
|
|
"name": "lucida",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "build/index.js",
|
|
"type": "module",
|
|
"types": "build/index.d.ts",
|
|
"scripts": {
|
|
"tsc": "tsc",
|
|
"lint": "prettier --plugin-search-dir . --check . && eslint .",
|
|
"format": "prettier --plugin-search-dir . --write ."
|
|
},
|
|
"exports": {
|
|
".": "./build/index.js",
|
|
"./streamers/*.js": "./build/streamers/*.js"
|
|
},
|
|
"files": [
|
|
"build/**/*"
|
|
],
|
|
"keywords": [],
|
|
"author": "hazycora",
|
|
"license": "AGPL",
|
|
"dependencies": {
|
|
"dotenv": "^16.1.4",
|
|
"image-size": "^1.0.2",
|
|
"node-fetch": "^3.3.1",
|
|
"xmldom-qsa": "^1.1.3"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.2.5",
|
|
"@typescript-eslint/eslint-plugin": "^5.59.9",
|
|
"@typescript-eslint/parser": "^5.59.9",
|
|
"eslint": "^8.42.0",
|
|
"eslint-config-prettier": "^8.8.0",
|
|
"prettier": "^2.8.8",
|
|
"typescript": "^5.1.3"
|
|
}
|
|
}
|