-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.72 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
{
"name": "@objectstack/lint",
"version": "17.0.0-rc.1",
"license": "Apache-2.0",
"description": "Static, build-time validation for an ObjectStack metadata graph \u2014 dashboard widget bindings, CEL/predicate expressions, and more. Pure (stack) => Issue[] functions shared by the CLI's `os validate` and any other consumer (e.g. AI authoring). Depends on @objectstack/spec; never on a runtime.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./runtime": {
"types": "./dist/runtime.d.ts",
"import": "./dist/runtime.js",
"require": "./dist/runtime.cjs"
}
},
"scripts": {
"build": "tsup",
"dev": "tsc -w",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@marcbachmann/cel-js": "^8.0.0",
"@objectstack/formula": "workspace:*",
"@objectstack/sdui-parser": "workspace:*",
"@objectstack/spec": "workspace:*",
"sucrase": "^3.35.1",
"typescript": "^6.0.3"
},
"devDependencies": {
"@types/node": "^26.1.2",
"vitest": "^4.1.10"
},
"keywords": [
"objectstack",
"lint",
"validation",
"metadata",
"static-analysis"
],
"author": "ObjectStack",
"repository": {
"type": "git",
"url": "https://github.com/objectstack-ai/objectstack.git",
"directory": "packages/lint"
},
"homepage": "https://objectstack.ai/docs",
"bugs": "https://github.com/objectstack-ai/objectstack/issues",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"engines": {
"node": ">=22.0.0"
}
}