-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.62 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
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
{
"name": "hybrid-ui",
"description": "Hybrid UI is a cutting-edge web front-end framework that empowers developers to create high-performance, memory-safe, and visually stunning applications. It provides a comprehensive set of tools and features to streamline development and deliver exceptional user experiences.",
"packageManager": "[email protected]",
"author": "S. MohammadMahdi Zamanian <[email protected]> (https://mm25zamanian.ir)",
"license": "MIT",
"type": "module",
"private": true,
"keywords": [
"ui",
"components",
"framework",
"high-performance",
"scalable",
"maintainable",
"development-tools",
"data-validation",
"error-handling",
"logging",
"developer-friendly",
"gecut"
],
"workspaces": [
"packages/*",
"demo"
],
"scripts": {
"l": "yarn run lint",
"b": "yarn run build",
"br": "run-s build build:r",
"c": "yarn run clean",
"cb": "run-s clean build",
"s": "run-s build serve",
"w": "yarn run watch",
"d": "yarn run build && yarn node",
"f": "yarn run format",
"fl": "yarn run format:eslint",
"fp": "yarn run format:prettier",
"rl": "run-s pull clean build release",
"upd": "yarn set version latest; yarn up '*' -i; yarn up '*' -R; yarn dlx @yarnpkg/sdks vscode;",
"lint": "run-s 'lint:*'",
"lint:ts": "eslint --config .eslintrc.json --ignore-path .gitignore --ext .ts --ext .mjs '.'",
"build": "run-s build:ts build:lerna",
"build:ts": "tsc --build",
"build:lerna": "lerna run build",
"format": "run-s format:prettier format:eslint",
"format:eslint": "yarn run lint:ts --fix",
"format:prettier": "prettier . --ignore-path .prettierignore --write",
"clean": "git clean -d -x -f --exclude=node_modules --exclude='*.env' --exclude=_data --exclude='.pnp*' --exclude=.yarn",
"serve": "lerna run serve",
"watch": "run-p 'watch:*' serve",
"watch:ts": "yarn run build:ts --watch --preserveWatchOutput",
"pull": "git pull",
"release": "lerna version",
"publish": "lerna publish from-package"
},
"devDependencies": {
"@lerna-lite/changed": "^3.3.1",
"@lerna-lite/cli": "^3.3.1",
"@lerna-lite/diff": "^3.3.1",
"@lerna-lite/exec": "^3.3.1",
"@lerna-lite/publish": "^3.3.1",
"@lerna-lite/run": "^3.3.1",
"@lerna-lite/version": "^3.3.1",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"typescript": "5.2.2"
}
}