-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.94 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.94 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
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@topsort/analytics.js",
"version": "2.8.0",
"description": "JS library to automatically report events to Topsort's Analytics",
"main": "dist/ts.js",
"type": "module",
"repository": {
"url": "https://github.com/Topsort/analytics.js"
},
"packageManager": "pnpm@10.22.0",
"keywords": [
"ads",
"sponsored listings",
"auctions",
"analytics",
"topsort"
],
"engines": {
"node": ">=20.0.0"
},
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/ts.mjs",
"require": "./dist/ts.js"
},
"./iife": {
"default": "./dist/ts.iife.js"
}
},
"module": "./dist/ts.mjs",
"files": [
"dist/src",
"dist/ts.js",
"dist/ts.mjs",
"dist/ts.iife.js",
"dist/src/*.d.ts",
"package.json",
"README.md",
"CHANGELOG.md"
],
"homepage": "https://github.com/Topsort/analytics.js#readme",
"scripts": {
"build": "vite build && vite build --mode iife",
"format": "biome format",
"format:fix": "biome format --write",
"lint": "biome check",
"lint:fix": "biome check --write",
"lint:ci": "biome ci",
"test": "vitest run --coverage",
"test:e2e": "vite build && vite build -c vite.config.browser-test.js && tsc && node dist/mocks/api-server.js",
"playground": "pnpm run build && npx serve .",
"types:check": "tsc --noemit"
},
"author": "Topsort",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "2.4.7",
"@types/express": "5.0.6",
"@types/node": "24.10.1",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitest/coverage-v8": "4.0.8",
"express": "5.2.1",
"jsdom": "27.2.0",
"msw": "2.12.4",
"react": "19.2.4",
"react-dom": "19.2.0",
"react-router-dom": "7.9.5",
"tslib": "2.8.1",
"typescript": "5.9.3",
"vite": "7.3.2",
"vite-plugin-dts": "4.5.4",
"vitest": "4.0.8"
},
"dependencies": {
"@topsort/sdk": "0.3.8"
}
}