-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.55 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.55 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
{
"name": "@axiscommunications/fluent-stepper",
"version": "11.0.0-alpha.0",
"description": "Stepper for Fluent UI v9",
"homepage": "https://github.com/AxisCommunications/fluent-components#readme",
"repository": {
"type": "git",
"url": "https://github.com/AxisCommunications/fluent-components.git",
"directory": "components/stepper"
},
"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",
"test": "vitest run",
"test:watch": "vitest watch"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^14.2.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"esbuild": "^0.25.1",
"jsdom": "^26.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.8.2",
"vitest": "^3.0.8"
},
"peerDependencies": {
"@fluentui/react-components": "^9.58.2",
"@fluentui/react-icons": "^2.0.271 ",
"@fluentui/react-utilities": "^9.18.20",
"react": ">=16.8.0 <19.0.0",
"react-dom": ">=16.8.0 <19.0.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}