@jam.dev/recording-links
Version:
Capture bug reports from your users with the Jam recording links SDK
68 lines (67 loc) • 1.93 kB
JSON
{
"name": "@jam.dev/recording-links",
"version": "0.2.0",
"description": "Capture bug reports from your users with the Jam recording links SDK",
"keywords": [
"jam",
"recording",
"screen-recording",
"bug-reports",
"sdk",
"typescript"
],
"homepage": "https://github.com/jam-dev/jam",
"repository": {
"type": "git",
"url": "git+https://github.com/jamdotdev/sdk-recording-links.git"
},
"private": false,
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"type": "module",
"exports": {
"./sdk": {
"types": "./lib/sdk.d.ts",
"import": "./lib/sdk.js"
},
"./lib/sdk": {
"types": "./lib/sdk.d.ts",
"import": "./lib/sdk.js"
}
},
"files": [
"lib",
"!lib/**/*.map"
],
"main": "./lib/sdk.js",
"sideEffects": false,
"scripts": {
"build:clean": "rm -rf ./lib tsconfig.tsbuildinfo",
"dev": "rollup -c --watch --environment BUILD:dev,JAM_JS_ORIGIN:local",
"dev:remote": "rollup -c --watch --environment BUILD:dev,JAM_JS_ORIGIN:prod",
"dev:staging": "rollup -c --watch --environment BUILD:dev,JAM_JS_ORIGIN:staging",
"build": "rollup -c --environment BUILD:prod",
"build:dev": "rollup -c --environment BUILD:dev",
"prepublishOnly": "bun run scripts/validate-build.ts",
"lint": "biome lint './src' --diagnostic-level=error",
"lint:fix": "biome lint './src' --diagnostic-level=error --fix",
"test": "vitest --passWithNoTests src/",
"type-check": "tsc --noEmit"
},
"dependencies": {},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.0.0",
"biome": "^0.3.3",
"jsdom": "^27.0.0",
"rollup": "^4.12.0",
"tslib": "^2.8.1",
"typescript": "^5.8.2",
"vitest": "^2.1.8"
}
}