-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.85 KB
/
package.json
File metadata and controls
77 lines (77 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@seljs/checker",
"version": "1.2.0",
"repository": {
"url": "https://github.com/abinnovision/seljs"
},
"license": "Apache-2.0",
"author": {
"name": "abi group GmbH",
"email": "info@abigroup.io",
"url": "https://abigroup.io/"
},
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.cts",
"files": [
"dist",
"LICENSE.md"
],
"scripts": {
"build": "tsdown",
"format:check": "prettier --check '{{src,test}/**/*,*}.{{t,j}s{,x},json{,5},md,y{,a}ml}'",
"format:fix": "prettier --write '{{src,test}/**/*,*}.{{t,j}s{,x},json{,5},md,y{,a}ml}'",
"lint:check": "eslint '{{src,test}/**/*,*}.{t,j}s{,x}'",
"lint:fix": "eslint '{{src,test}/**/*,*}.{t,j}s{,x}' --fix",
"test-integration": "vitest run --config test/integration/vitest.config.ts",
"test-unit": "vitest run",
"test-unit:watch": "vitest watch",
"typecheck": "tsc --noEmit"
},
"lint-staged": {
"{{src,test}/**/*,*}.{{t,j}s{,x},json{,5},md,y{,a}ml}": [
"prettier --write"
],
"{{src,test}/**/*,*}.{t,j}s{,x}": [
"eslint --fix"
]
},
"dependencies": {
"@marcbachmann/cel-js": "^7.5.3",
"@seljs/common": "workspace:*",
"@seljs/schema": "workspace:*",
"@seljs/types": "workspace:*",
"debug": "^4.4.3"
},
"devDependencies": {
"@abinnovision/eslint-config-base": "^3.2.2",
"@abinnovision/prettier-config": "^2.1.5",
"@seljs-internal/tsconfig": "workspace:^",
"@types/debug": "^4.1.13",
"eslint": "^9.39.4",
"prettier": "^3.8.1",
"tsdown": "^0.21.4",
"typescript": "^5.9.3",
"vitest": "^4.1.0",
"zod": "^4.3.6"
},
"peerDependencies": {
"zod": "^4.0.0"
},
"publishConfig": {
"npm": true,
"npmAccess": "public"
}
}