@topsort/toppie-sdk
Version:
Toppie sdk is a JS library that allows to integrate Topsort auctions and analytics into your website.
72 lines • 1.82 kB
JSON
{
"name": "@topsort/toppie-sdk",
"version": "0.2.0",
"main": "dist/main.js",
"module": "dist/main.mjs",
"type": "module",
"keywords": [
"ads",
"sponsored listings",
"auctions",
"analytics",
"topsort"
],
"engines": {
"node": ">=22.0.0"
},
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/main.mjs",
"require": "./dist/main.js"
}
},
"files": [
"dist/main.js",
"dist/main.mjs",
"dist/debug.js",
"dist/*.d.ts",
"package.json",
"README.md",
"CHANGELOG.md"
],
"author": "Topsort",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@hey-api/openapi-ts": "0.64.13",
"@types/node": "22.15.2",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "7.9.0",
"@typescript-eslint/parser": "7.18.0",
"@vitest/coverage-v8": "3.1.2",
"eslint": "8.57.0",
"eslint-plugin-vitest": "0.4.1",
"jsdom": "24.0.0",
"nock": "14.0.4",
"npm-run-all2": "8.0.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"typescript": "5.5.2",
"vite": "6.3.3",
"vite-plugin-dts": "4.5.3",
"vite-plugin-mkcert": "1.17.8",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.1.2"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"postbuild": "cp src/debug.js dist/debug.js",
"serve": "npm-run-all --parallel dev \"build --watch\"",
"format": "biome check",
"format:fix": "biome check --write",
"lint": "eslint . --max-warnings 0 --ignore-path .gitignore",
"lint:fix": "eslint . --max-warnings 0 --ignore-path .gitignore --fix",
"test": "vitest",
"test:coverage": "vitest --coverage",
"types": "tsc --noEmit",
"generate:openapi": "openapi-ts"
}
}