-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.05 KB
/
package.json
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
{
"name": "@zonia-ui/root",
"version": "0.0.1",
"description": "UI library root",
"private": true,
"repository": "https://github.com/mzonski/zonia-ui.git",
"scripts": {
"type-check": "tsc --noEmit",
"fix:lint": "eslint --fix components",
"generate-license-file": "license-checker-rseidelsohn --direct true --nopeer --markdown --out LICENSE_3RD_PARTY.md --excludePrivatePackages --excludePackagesStartingWith \"zonia;@zonia\" --excludePackages \"eslint-plugin-zonia;stylelint-config-zonia\""
},
"author": "Maciej Zonski <me@zonni.pl>",
"license": "MIT",
"workspaces": [
"app",
"components",
"core",
"icons",
"libs/*",
"theme"
],
"dependencies": {
"vitest": "^3.0.5",
"eslint-plugin-zonia": "^1.0.1",
"zonia-config-prettier": "^1.0.2",
"stylelint-config-zonia": "^1.0.0",
"typescript": "5.2.2",
"fp-ts": "^2.16.6"
},
"devDependencies": {
"license-checker-rseidelsohn": "^4.3.0"
},
"engines": {
"npm": "please-use-yarn",
"yarn": ">= 1.22.19",
"node": ">= v16.20.1"
}
}