-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.54 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@doist/interaction-trace",
"version": "1.1.2",
"description": "A performance monitoring library for tracking the time from user interactions to next paint (INP) and last long-animation frame (LoAF), with declarative trace signing and third-party reporting.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./react": {
"types": "./dist/react/index.d.ts",
"import": "./dist/react/index.js",
"default": "./dist/react/index.js"
}
},
"typesVersions": {
"*": {
"react": [
"dist/react/index.d.ts"
]
}
},
"sideEffects": false,
"scripts": {
"build": "rimraf dist && rollup -c",
"check": "run-p check:* -c -l",
"check:types": "tsc --noEmit",
"check:biome": "biome check",
"fix": "run-p fix:* -c -l",
"fix:biome": "biome check --write",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Doist/interaction-trace.git"
},
"keywords": [
"performance",
"interaction",
"inp",
"loaf",
"monitoring"
],
"author": "Doist Developers <dev@doist.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Doist/interaction-trace/issues"
},
"homepage": "https://github.com/Doist/interaction-trace#readme",
"files": [
"dist/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"devDependencies": {
"@biomejs/biome": "2.4.11",
"@doist/tsconfig": "2.0.1",
"@rollup/plugin-node-resolve": "16.0.3",
"@rollup/plugin-typescript": "12.3.0",
"@testing-library/react": "16.3.2",
"@types/node": "25.6.0",
"@types/react": "19.2.14",
"happy-dom": "20.8.9",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"npm-run-all2": "8.0.4",
"react": "19.2.5",
"react-dom": "19.2.5",
"rimraf": "6.1.3",
"rollup": "4.60.1",
"tslib": "2.8.1",
"typescript": "6.0.2",
"vitest": "4.1.4"
}
}