@halo-ads/core 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "@halo-ads/core",
3
+ "version": "0.1.0",
4
+ "license": "MIT",
5
+ "publishConfig": {
6
+ "access": "public"
7
+ },
8
+ "description": "Halo Ads Core SDK — framework-agnostic ad fetching, rendering, and event tracking",
9
+ "main": "./dist/index.js",
10
+ "module": "./dist/index.mjs",
11
+ "types": "./dist/index.d.ts",
12
+ "sideEffects": false,
13
+ "exports": {
14
+ ".": {
15
+ "types": "./dist/index.d.ts",
16
+ "import": "./dist/index.mjs",
17
+ "require": "./dist/index.js"
18
+ }
19
+ },
20
+ "files": [
21
+ "dist"
22
+ ],
23
+ "dependencies": {
24
+ "@halo-ads/types": "0.1.0"
25
+ },
26
+ "devDependencies": {
27
+ "tsup": "^8.0.2",
28
+ "typescript": "^5.4.5"
29
+ },
30
+ "scripts": {
31
+ "build": "tsup src/exports.ts --format esm,cjs --dts --clean --entry.index=src/exports.ts",
32
+ "dev": "tsup src/exports.ts --format esm,cjs --dts --watch",
33
+ "typecheck": "tsc --noEmit",
34
+ "clean": "rm -rf dist *.tsbuildinfo"
35
+ }
36
+ }