-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.05 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.05 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@kwiz/fluentui",
"version": "1.0.175",
"description": "KWIZ common controls for FluentUI",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"watch": "tsc-watch --onSuccess \"yalc push\"",
"build": "npm run test && tsc",
"build-explain": "tsc --explainFiles",
"check-dependencies": "madge --circular ./src",
"yalc-link": "yalc publish",
"create-link": "npm link",
"test": "npm run prestart && depcruise src && node --import tsx --test src",
"link-local-kwiz": "npm link @kwiz/common",
"__update-kwiz-packages": "npm install @kwiz/common@latest",
"npm-v-patch": "npm version patch && git push origin main:main && git push --tags",
"npm-v-major": "npm version major && git push origin main:main && git push --tags",
"npm-publish": "npm publish --access public",
"reset-repo": "git fetch origin && git reset --hard origin/main",
"clear-npm-cache": "npm cache clean --force",
"prestart": "check-node-version --node 18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KWizCom/fluentui.git"
},
"keywords": [
"KWIZ",
"FluentUI"
],
"author": "Shai Petel",
"contributors": [
"Shai Petel"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/KWizCom/fluentui/issues",
"email": "support@kwizcom.com"
},
"homepage": "https://github.com/KWizCom/fluentui#readme",
"private": false,
"engines": {
"node": ">=16"
},
"packageManager": "npm@9.5.1",
"devDependencies": {
"@types/qrcode": "^1.5.5",
"check-node-version": "^4.2.1",
"dependency-cruiser": "^16.8.0",
"fs-extra": "^11.2.0",
"madge": "^6.1.0",
"tsc-watch": "^7.2.0",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@fluentui/react-datepicker-compat": "^0.4.53",
"@fluentui/react-timepicker-compat": "^0.2.42",
"@kwiz/common": "^1.0.199",
"@mismerge/core": "^1.2.1",
"@mismerge/react": "^1.0.1",
"@monaco-editor/react": "^4.7.0",
"esbuild": "^0.19.12",
"get-tsconfig": "^4.7.2",
"jodit": "^4.6.2",
"jodit-react": "^5.2.19",
"qrcode": "^1.5.4",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-pick-color": "^2.0.0",
"resolve-pkg-maps": "^1.0.0"
},
"peerDependencies": {
"@fluentui/react-components": ">=9.54.17 <10.0.0",
"@fluentui/react-icons": "^2.0.269",
"@fluentui/react-utilities": "^9.18.20",
"@types/react": ">=16.14.0 <19.0.0",
"@types/react-dom": ">=16.9.0 <19.0.0",
"react": ">=16.14.0 <19.0.0",
"react-dom": ">=16.14.0 <19.0.0"
}
}