-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.54 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@vllnt/analytics",
"version": "0.1.1",
"description": "Lightweight, privacy-first analytics with consent management and React integration",
"type": "module",
"packageManager": "pnpm@9.15.4",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vllnt/analytics.git"
},
"keywords": [
"analytics",
"consent",
"privacy",
"gdpr",
"react",
"do-not-track"
],
"sideEffects": false,
"files": [
"src",
"!src/__tests__",
"README.md",
"LICENSE"
],
"main": "./src/index.ts",
"module": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": {
"types": "./src/index.ts",
"import": "./src/index.ts",
"require": "./src/index.ts"
},
"./react": {
"types": "./src/react.tsx",
"import": "./src/react.tsx",
"require": "./src/react.tsx"
}
},
"scripts": {
"clean": "rm -rf node_modules",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"test:once": "vitest run",
"test:coverage": "vitest run --coverage"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"eslint": "^9.39.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/node": "^22",
"@types/react": "^19.1.6",
"@vitest/coverage-v8": "^4.0.16",
"@vllnt/eslint-config": "^1.0.0",
"@vllnt/typescript": "^1.0.0",
"jsdom": "^26.1.0",
"react": "^19.2.0",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
}
}