-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.96 KB
/
package.json
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
68
69
{
"name": "@topsort/analytics.js",
"version": "2.4.0",
"description": "JS library to automatically report events to Topsort's Analytics",
"main": "dist/ts.js",
"type": "module",
"packageManager": "[email protected]",
"keywords": ["ads", "sponsored listings", "auctions", "analytics", "topsort"],
"engines": {
"node": ">=20.0.0"
},
"exports": {
".": {
"import": "./dist/ts.mjs",
"require": "./dist/ts.js",
"types": "./dist/src/events.d.ts"
}
},
"module": "./dist/ts.mjs",
"files": [
"dist/src",
"dist/ts.js",
"dist/ts.mjs",
"dist/*.d.ts",
"package.json",
"README.md",
"CHANGELOG.md"
],
"homepage": "https://github.com/Topsort/analytics.js#readme",
"scripts": {
"build": "vite build",
"format": "biome check",
"format:fix": "biome check --write",
"lint": "eslint . --max-warnings 0 --ignore-path .gitignore",
"lint:fix": "eslint . --max-warnings 0 --ignore-path .gitignore --fix",
"lint:ci": "eslint . --max-warnings 0 --ignore-path .gitignore",
"test": "vitest run --coverage",
"test:e2e": "vite build && vite build -c vite.config.browser-test.js && tsc && node dist/mocks/api-server.js",
"types:check": "tsc"
},
"author": "Topsort",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@types/express": "^4.17.21",
"@types/node": "^20.13.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^8.57.0",
"eslint-plugin-vitest": "^0.4.1",
"express": "^4.20.0",
"jsdom": "^24.0.0",
"msw": "^2.6.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.28.0",
"tslib": "^2.6.3",
"typescript": "^5.5.2",
"vite": "^5.4.10",
"vite-plugin-dts": "^4.2.3",
"vitest": "^2.0.5"
},
"dependencies": {
"@topsort/sdk": "^0.3.1"
}
}