This repository has been archived on 2025-10-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
MarkNow/packages/banners/package.json
2023-06-27 17:37:58 -03:00

47 lines
1.1 KiB
JSON

{
"name": "@marknow/banners",
"type": "module",
"version": "1.0.0",
"private": false,
"source": "./src/index.js",
"description": "",
"license": "MIT OR Apache-2.0",
"homepage": "https://github.com/LoredDev/MarkNow/tree/main#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/LoredDev/MarkNow.git#main"
},
"bugs": {
"url": "https://github.com/LoredDev/MarkNow/issues"
},
"keywords": [],
"exports": {
"types": "./src/index.d.ts",
"require": "./dist/index.cjs",
"import": "./src/index.js",
"default": "./src/index.js"
},
"main": "./dist/index.cjs",
"module": "./src/index.js",
"types": "./src/index.d.ts",
"scripts": {
"test": "vitest run",
"test:watch": "vitest watch",
"build:cjs": "microbundle --compress false --pkg-main false --strict --tsconfig ./jsconfig.json --generateTypes false -f cjs --target node",
"build": "pnpm run build:cjs",
"dev": "pnpm run build -w",
"lint": "eslint ."
},
"dependencies": {
"satori": "^0.10.1",
"satori-html": "^0.3.2"
},
"devDependencies": {
"@types/node": "^20.3.1",
"microbundle": "^0.15.1"
},
"directories": {
"test": "tests"
}
}