@cookieyes/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,68 @@
1
+ {
2
+ "name": "@cookieyes/core",
3
+ "version": "0.1.0",
4
+ "description": "Headless consent engine — the single source of truth for all CookieYes consent logic",
5
+ "keywords": [
6
+ "cookie consent",
7
+ "GDPR",
8
+ "CCPA",
9
+ "cookie banner",
10
+ "consent management",
11
+ "privacy",
12
+ "compliance",
13
+ "React",
14
+ "Next.js",
15
+ "TypeScript",
16
+ "open source"
17
+ ],
18
+ "homepage": "https://github.com/cookieyes/cookieyes/tree/main/sdk/core#readme",
19
+ "bugs": {
20
+ "url": "https://github.com/cookieyes/cookieyes/issues"
21
+ },
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "git+https://github.com/cookieyes/cookieyes.git",
25
+ "directory": "sdk/core"
26
+ },
27
+ "license": "MIT",
28
+ "author": "CookieYes (https://www.cookieyes.com)",
29
+ "sideEffects": false,
30
+ "type": "module",
31
+ "exports": {
32
+ ".": {
33
+ "types": "./dist/index.d.ts",
34
+ "import": "./dist/index.js",
35
+ "require": "./dist/index.cjs"
36
+ }
37
+ },
38
+ "main": "./dist/index.cjs",
39
+ "module": "./dist/index.js",
40
+ "types": "./dist/index.d.ts",
41
+ "files": [
42
+ "dist",
43
+ "LICENSE",
44
+ "README.md"
45
+ ],
46
+ "engines": {
47
+ "node": ">=20"
48
+ },
49
+ "publishConfig": {
50
+ "access": "public",
51
+ "provenance": true
52
+ },
53
+ "scripts": {
54
+ "build": "tsup",
55
+ "dev": "tsup --watch",
56
+ "typecheck": "tsc --noEmit",
57
+ "clean": "rm -rf dist",
58
+ "test": "vitest run --coverage"
59
+ },
60
+ "devDependencies": {
61
+ "@types/node": "^24.12.4",
62
+ "@vitest/coverage-v8": "^4.1.7",
63
+ "jsdom": "^29.1.1",
64
+ "tsup": "^8.5.1",
65
+ "typescript": "^6.0.3",
66
+ "vitest": "^4.1.7"
67
+ }
68
+ }