-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.81 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.81 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
{
"name": "@axiscommunications/fluent-topbar",
"version": "12.0.0",
"description": "Axis branded TopBar",
"homepage": "https://github.com/AxisCommunications/fluent-components#readme",
"repository": {
"type": "git",
"url": "https://github.com/AxisCommunications/fluent-components.git",
"directory": "components/topbar"
},
"license": "MIT",
"author": "Axis Communications AB",
"type": "module",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js"
}
},
"files": ["lib"],
"scripts": {
"prebuild": "pnpm run -C ../../icons build && pnpm run -C ../../theme build ",
"build": "pnpm prebuild && pnpm build:types && pnpm build:esm",
"build:esm": "esbuild --format=esm --bundle --sourcemap --packages=external --outdir=lib src/index.ts",
"build:types": "tsc -p tsconfig.build.json",
"check:unused-deps": "depcheck . --config=depcheck.yml",
"lint": "tsc --noEmit && biome check",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"@axiscommunications/fluent-icons": "workspace:*",
"@axiscommunications/fluent-theme": "workspace:*"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/react": "^19.2.6",
"@types/react-dom": "^19.2.3",
"esbuild": "^0.25.3",
"jsdom": "^26.1.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"typescript": "^5.8.3",
"vitest": "^3.1.2"
},
"peerDependencies": {
"@axiscommunications/fluent-theme": ">=9.0.0",
"@fluentui/react-components": "^9.72.7",
"@fluentui/react-icons": "^2.0.315",
"@fluentui/react-utilities": "^9.25.4",
"react": ">=16.14.0 <20.0.0",
"react-dom": ">=16.14.0 <20.0.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}