forked from alfed7/helmet-head
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.38 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.38 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
{
"name": "@react5/helmet",
"version": "0.4.3",
"homepage": "https://github.com/react5com/helmet",
"repository": "https://github.com/react5com/helmet",
"author": "React5",
"license": "MIT",
"private": false,
"main": "dist/index.esm.js",
"module": "dist/index.esm.js",
"types": "dist/types/index.d.ts",
"type": "module",
"peerDependencies": {
"react": ">=18.x"
},
"devDependencies": {
"@babel/core": "^7.27.4",
"@babel/eslint-parser": "^7.27.5",
"@babel/plugin-transform-runtime": "^7.27.4",
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@babel/runtime": "^7.27.6",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.3",
"@types/react": "^19.1.8",
"jest": "^30.0.2",
"npm-run-all": "^4.1.5",
"react": "^19.1.0",
"rollup": "^4.44.0",
"ts-jest": "29.4.0",
"typescript": "^5.8.3"
},
"scripts": {
"tsc": "tsc -b",
"tsc-watch": "tsc -b --watch",
"lint": "eslint \"src/**\" --ext .ts --ext .tsx",
"build": "npm run tsc & rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"pretest": "npm run build"
},
"files": [
"dist"
]
}