-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.32 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@hyperse/track",
"version": "1.0.5",
"description": "A typed, smart, scalable, powerful data collection engine written in typescript",
"keywords": [
"hyperse",
"middleware",
"pipeline",
"pipe",
"track engine",
"google track",
"facebook track",
"klaviyo track"
],
"repository": {
"type": "git",
"url": "[email protected]:hyperse-io/track.git"
},
"type": "module",
"exports": {
".": {
"import": "./index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"files": [
"./bin/",
"./dist/",
"./index.js"
],
"workspaces": [
"website",
"examples/*",
"./"
],
"scripts": {
"build": "tsup",
"lint": "eslint .",
"lint-fix": "yarn lint --fix",
"test": "run-s test-unit",
"test-unit": "vitest run",
"test-ui": "vitest --ui",
"coverage": "vitest run --coverage",
"typecheck": "tsc --project ./tsconfig.json --noEmit",
"lint-staged-files": "lint-staged --allow-empty",
"changeset": "changeset",
"release": "yarn build && changeset publish",
"test:coverage": "vitest run --coverage",
"cz": "cz",
"prepare": "husky"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@hyperse/pipeline": "^1.0.4"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.9",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@hyperse/eslint-config-hyperse": "^1.2.6",
"@hyperse/exec-program": "^1.0.10",
"@hyperse/vitest-coverage-reporter": "^1.0.15",
"@types/lodash": "^4",
"@types/node": "^22.7.9",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitest/coverage-istanbul": "^2.1.3",
"@vitest/ui": "^2.1.3",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "^9.13.0",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"next": "15.0.1",
"npm-run-all": "^4.1.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tsup": "^8.3.0",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vitest": "^2.1.3"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]"
}