-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.21 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.21 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
{
"name": "ruleset-engine",
"description": "A tiny (≈ 1 KB gzipped), zero-dependency TypeScript library for evaluating rule trees expressed as JSON-serializable data.",
"version": "1.2.0",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"source": "src/index.ts",
"type": "module",
"types": "dist/index.d.ts",
"declaration": true,
"declarationDir": "dist",
"license": "MIT",
"keywords": [
"ruleset-engine",
"json-ruleset",
"rule-engine-json"
],
"repository": {
"type": "git",
"url": "https://github.com/hosembafer/ruleset-engine.git"
},
"author": "Rafayel Hovhannisyan <rafayel.hovhannisyan.95@gmail.com>",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js"
}
},
"files": [
"dist",
"dist-cdn"
],
"scripts": {
"build:npm": "BUILD_TARGET=npm vite build",
"build:cdn": "BUILD_TARGET=cdn vite build",
"build": "npm run build:npm && npm run build:cdn",
"test": "tsx ./src/test.ts"
},
"devDependencies": {
"@types/node": "^22.15.18",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vite-plugin-dts": "^4.5.3"
}
}