-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.21 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.21 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
{
"name": "@axiscommunications/fluent-styles",
"version": "11.0.0-alpha.0",
"description": "Styles for Fluent UI v9",
"homepage": "https://github.com/AxisCommunications/fluent-components#readme",
"repository": {
"type": "git",
"url": "https://github.com/AxisCommunications/fluent-components.git",
"directory": "styles"
},
"license": "MIT",
"author": "Axis Communications AB",
"type": "module",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js"
}
},
"files": ["lib"],
"scripts": {
"build": "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"
},
"devDependencies": {
"@types/react": "^18.3.12",
"esbuild": "^0.25.0",
"react": "^18.2.0",
"typescript": "^5.8.2"
},
"peerDependencies": {
"@fluentui/react-components": "^9.58.2",
"@fluentui/react-icons": "^2.0.271 ",
"react": ">=16.8.0 <19.0.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}