-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.24 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.24 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
92
{
"name": "@elite-libs/rules-machine",
"version": "2.0.0-rc1",
"description": "📐 A fast serializable logical Rules Engine.",
"type": "module",
"homepage": "https://github.com/elite-libs/rules-machine",
"repository": {
"type": "git",
"url": "git://github.com/elite-libs/rules-machine.git"
},
"source": "./src/index.ts",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"browser": "./dist/index.global.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"private": false,
"packageManager": "[email protected]",
"engines": {
"node": ">=24.0.0",
"pnpm": ">=10.0.0"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepublishOnly": "NODE_ENV=production pnpm run build && vitest run",
"release:npm": "npm publish --access public --registry https://registry.npmjs.org/",
"release:github": "npm publish --access public --registry https://npm.pkg.github.com/",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:update": "vitest run -u",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write ."
},
"keywords": [
"elite-libs",
"elitelibs",
"Rules Engine",
"JSON Rules Engine",
"JSON Rules",
"JSON",
"JSON-based",
"JSON-based Rules Engine",
"JSON-based Rules",
"JSON-based Rules Engine",
"YAML Rules Engine"
],
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@types/debug": "^4.1.12",
"@types/lodash": "^4.17.15",
"@types/ms": "^2.1.0",
"@types/node": "^24.0.0",
"@vitest/coverage-v8": "^3.0.0",
"tsup": "^8.4.0",
"typescript": "^5.8.0",
"vitest": "^3.0.0"
},
"dependencies": {
"debug": "^4.4.0",
"expressionparser": "^1.1.5",
"lodash": "^4.17.21",
"ms": "^2.1.3"
},
"author": {
"name": "@justsml",
"url": "https://danlevy.net"
},
"license": "BSD-3-Clause",
"files": [
"dist",
"*.md"
],
"pnpm": {
"onlyBuiltDependencies": [],
"auditConfig": {
"ignoreCves": []
}
},
"overrides": {},
"workspaces": [
"."
]
}