-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.85 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
{
"name": "rule-engine-monorepo",
"preview": true,
"type": "module",
"packageManager": "pnpm@10.17.1",
"description": "A monorepo of Rule Engine implementation for NodeJS and Browser. It includes a core rule engine and various plugins.",
"author": {
"name": "Ali Torki",
"email": "ali_4286@live.com",
"url": "https://github.com/ali-master"
},
"license": "MIT",
"scripts": {
"build": "pnpm -r build",
"build:demo": "pnpm -r build:demo",
"lint": "pnpm -r lint",
"lint:fix": "pnpm -r lint:fix",
"format:check": "pnpm -r format:check",
"format": "pnpm -r format",
"test:junit": "pnpm -r test:junit",
"test:unit": "pnpm -r test:unit",
"test:types": "pnpm -r test:types",
"test:knip": "pnpm -r test:knip",
"test:coverage": "pnpm -r test:coverage",
"release": "pnpm -r release",
"release:beta": "pnpm -r release:beta",
"postinstall": "simple-git-hooks install"
},
"devDependencies": {
"@antfu/eslint-config": "5.4.1",
"@eslint-react/eslint-plugin": "^1.53.1",
"@types/node": "24.5.2",
"@typescript/native-preview": "7.0.0-dev.20250922.1",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"changelogithub": "13.16.0",
"cross-env": "^10.0.0",
"eslint": "9.36.0",
"eslint-plugin-format": "^1.0.2",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.21",
"installed-check": "9.3.0",
"knip": "5.64.0",
"lint-staged": "16.2.0",
"prettier": "^3.6.2",
"simple-git-hooks": "2.13.1",
"standard-version": "^9.5.0",
"unbuild": "^3.6.1",
"vitest": "3.2.4"
},
"resolutions": {
"@usex/builder": "workspace:*",
"@usex/rule-engine": "workspace:*"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,ts,mjs,cjs,json,.*rc}": [
"pnpm lint:fix"
]
}
}