-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.83 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.83 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
{
"name": "@doist/react-compiler-tracker",
"version": "2.3.2",
"description": "A React Compiler violation tracker to help migrations and prevent regressions",
"type": "module",
"main": "dist/index.js",
"bin": {
"react-compiler-tracker": "dist/index.js"
},
"scripts": {
"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",
"build": "rimraf dist && tsc",
"prepare": "husky",
"test": "vitest run",
"test:watch": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Doist/react-compiler-tracker.git"
},
"keywords": [
"react",
"react-compiler",
"memoization",
"performance"
],
"author": "Doist Developers <dev@doist.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Doist/react-compiler-tracker/issues"
},
"homepage": "https://github.com/Doist/react-compiler-tracker#readme",
"engines": {
"node": "^20.0.0 || >=22.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"lint-staged": {
"*.{js,ts,json,md}": "biome check --write --no-errors-on-unmatched"
},
"devDependencies": {
"rimraf": "6.1.3",
"@biomejs/biome": "2.4.4",
"@doist/tsconfig": "2.0.1",
"@types/babel__core": "7.20.5",
"@types/node": "25.3.3",
"babel-plugin-react-compiler": "1.0.0",
"husky": "9.1.7",
"lint-staged": "16.3.0",
"npm-run-all2": "8.0.4",
"tsx": "4.21.0",
"typescript": "5.9.3",
"vitest": "4.0.18"
},
"peerDependencies": {
"babel-plugin-react-compiler": "^1.0.0"
},
"dependencies": {
"@babel/core": "7.29.0",
"@babel/preset-react": "7.28.5",
"@babel/preset-typescript": "7.28.5",
"glob": "13.0.6",
"minimatch": "10.2.4"
}
}