-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.13 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
{
"name": "@agentix-e/spel-ts",
"version": "2.0.2",
"description": "Pure TypeScript Spring Expression Language (SpEL) evaluator — zero native dependencies, 1,600+ tests, 96%+ coverage, browser & Node.js ready",
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --clean",
"test": "vitest run --coverage",
"test:watch": "vitest",
"lint": "eslint src/ tests/",
"lint:fix": "eslint --fix src/ tests/",
"format": "prettier --write 'src/**/*.ts' 'tests/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts' 'tests/**/*.ts'",
"typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.test.json",
"docs": "CI=true npx typedoc",
"prepublishOnly": "pnpm typecheck && pnpm lint && pnpm build && pnpm test"
},
"keywords": [
"spel",
"spring-expression-language",
"expression-evaluator",
"expression-parser",
"expression-language",
"spring-framework",
"typescript",
"browser",
"nodejs",
"zero-dependencies",
"rule-engine"
],
"license": "MIT",
"author": "AgentiX-E",
"repository": {
"type": "git",
"url": "git+https://github.com/AgentiX-E/spel-ts.git"
},
"bugs": {
"url": "https://github.com/AgentiX-E/spel-ts/issues"
},
"homepage": "https://github.com/AgentiX-E/spel-ts#readme",
"packageManager": "pnpm@10.23.0",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
],
"overrides": {
"esbuild": "^0.28.1"
}
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@stylistic/eslint-plugin": "^4.2.0",
"@vitest/coverage-v8": "^4.1.11",
"eslint": "^10.10.0",
"fast-check": "^4.9.0",
"prettier": "^3.5.3",
"tsup": "^8.4.0",
"typedoc": "^0.28.20",
"typescript": "^5.8.3",
"typescript-eslint": "^8.30.1",
"vitest": "^4.1.11"
}
}