|
| 1 | +{ |
| 2 | + "name": "@imtbl/audience-sdk", |
| 3 | + "description": "Immutable Audience SDK — consent-aware event tracking and identity management", |
| 4 | + "version": "0.0.0", |
| 5 | + "author": "Immutable", |
| 6 | + "bugs": "https://github.com/immutable/ts-immutable-sdk/issues", |
| 7 | + "dependencies": { |
| 8 | + "@imtbl/audience-core": "workspace:*" |
| 9 | + }, |
| 10 | + "devDependencies": { |
| 11 | + "@swc/core": "^1.4.2", |
| 12 | + "@swc/jest": "^0.2.37", |
| 13 | + "@types/jest": "^29.5.12", |
| 14 | + "@types/node": "^22.10.7", |
| 15 | + "eslint": "^8.56.0", |
| 16 | + "jest": "^29.7.0", |
| 17 | + "jest-environment-jsdom": "^29.4.3", |
| 18 | + "ts-jest": "^29.1.0", |
| 19 | + "tsup": "^8.3.0", |
| 20 | + "typescript": "^5.6.2" |
| 21 | + }, |
| 22 | + "engines": { |
| 23 | + "node": ">=20.11.0" |
| 24 | + }, |
| 25 | + "exports": { |
| 26 | + "development": { |
| 27 | + "types": "./src/index.ts", |
| 28 | + "browser": "./dist/browser/index.js", |
| 29 | + "require": "./dist/node/index.cjs", |
| 30 | + "default": "./dist/node/index.js" |
| 31 | + }, |
| 32 | + "default": { |
| 33 | + "types": "./dist/types/index.d.ts", |
| 34 | + "browser": "./dist/browser/index.js", |
| 35 | + "require": "./dist/node/index.cjs", |
| 36 | + "default": "./dist/node/index.js" |
| 37 | + } |
| 38 | + }, |
| 39 | + "files": ["dist"], |
| 40 | + "homepage": "https://github.com/immutable/ts-immutable-sdk#readme", |
| 41 | + "main": "dist/node/index.cjs", |
| 42 | + "module": "dist/node/index.js", |
| 43 | + "browser": "dist/browser/index.js", |
| 44 | + "publishConfig": { |
| 45 | + "access": "public" |
| 46 | + }, |
| 47 | + "repository": "immutable/ts-immutable-sdk.git", |
| 48 | + "scripts": { |
| 49 | + "build": "pnpm transpile && pnpm typegen", |
| 50 | + "transpile": "tsup src/index.ts --config ../../../tsup.config.js", |
| 51 | + "typegen": "tsc --customConditions default --emitDeclarationOnly --outDir dist/types", |
| 52 | + "lint": "eslint ./src --ext .ts,.jsx,.tsx --max-warnings=0", |
| 53 | + "test": "jest --passWithNoTests", |
| 54 | + "test:watch": "jest --watch", |
| 55 | + "typecheck": "tsc --customConditions development --noEmit --jsx preserve" |
| 56 | + }, |
| 57 | + "type": "module", |
| 58 | + "types": "./dist/types/index.d.ts" |
| 59 | +} |
0 commit comments