-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.67 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.67 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
{
"name": "@financial-times/dotcom-ui-header",
"version": "0.0.0",
"description": "",
"browser": "browser.js",
"main": "component.js",
"types": "dist/node/index.d.ts",
"styles": "styles.scss",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "npm run clean:dist && npm run clean:node_modules",
"clean:dist": "rm -rf dist",
"clean:node_modules": "rm -rf node_modules",
"clean:install": "npm run clean && npm i",
"build:node": "tsc",
"build:svg-to-react": "node scripts/convertSvgsToReactComponents.js",
"build": "npm run build:node",
"dev": "npm run build:node -- --watch"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@financial-times/dotcom-types-navigation": "file:../dotcom-types-navigation"
},
"devDependencies": {
"@financial-times/logo-images": "^1.10.1",
"@svgr/core": "^5.0.0",
"camelcase": "^6.0.0"
},
"peerDependencies": {
"@financial-times/logo-images": "^1.10.1",
"@financial-times/o-header": "^15.5.0",
"@financial-times/o3-button": "^3.15.0",
"n-topic-search": "^10.1.1",
"preact": "^10.23.2",
"react": "17.x || 18.x",
"react-dom": "17.x || 18.x"
},
"engines": {
"node": "18.x || 20.x || 22.x"
},
"files": [
"dist/",
"src/",
"browser.js",
"component.js",
"styles.scss"
],
"repository": {
"type": "git",
"repository": "https://github.com/Financial-Times/dotcom-page-kit.git",
"directory": "packages/dotcom-ui-header"
},
"homepage": "https://github.com/Financial-Times/dotcom-page-kit/tree/HEAD/packages/dotcom-ui-header",
"volta": {
"extends": "../../package.json"
}
}