@paradoc/expr 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +113 -0
- package/dist/index.d.ts +513 -0
- package/dist/index.js +1659 -0
- package/package.json +74 -0
package/package.json
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@paradoc/expr",
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "Purpose-built expression language for Paradoc artifacts: parser, evaluator, and artifact-aware checker",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js",
|
|
13
|
+
"default": "./dist/index.js"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"sideEffects": false,
|
|
17
|
+
"files": [
|
|
18
|
+
"dist",
|
|
19
|
+
"README.md",
|
|
20
|
+
"CHANGELOG.md",
|
|
21
|
+
"LICENSE"
|
|
22
|
+
],
|
|
23
|
+
"keywords": [
|
|
24
|
+
"paradoc",
|
|
25
|
+
"expression",
|
|
26
|
+
"language",
|
|
27
|
+
"dsl",
|
|
28
|
+
"forms",
|
|
29
|
+
"rules"
|
|
30
|
+
],
|
|
31
|
+
"license": "MIT",
|
|
32
|
+
"author": {
|
|
33
|
+
"name": "Paradoc",
|
|
34
|
+
"url": "https://paradoc.dev"
|
|
35
|
+
},
|
|
36
|
+
"engines": {
|
|
37
|
+
"node": ">=18"
|
|
38
|
+
},
|
|
39
|
+
"repository": {
|
|
40
|
+
"type": "git",
|
|
41
|
+
"url": "https://github.com/paradoc-dev/paradoc.git",
|
|
42
|
+
"directory": "packages/expr"
|
|
43
|
+
},
|
|
44
|
+
"homepage": "https://paradoc.dev",
|
|
45
|
+
"bugs": {
|
|
46
|
+
"url": "https://github.com/paradoc-dev/paradoc/issues"
|
|
47
|
+
},
|
|
48
|
+
"publishConfig": {
|
|
49
|
+
"access": "public"
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@types/node": "^22.15.3",
|
|
53
|
+
"@vitest/coverage-v8": "^2.1.8",
|
|
54
|
+
"eslint": "^9.34.0",
|
|
55
|
+
"tsup": "^8.4.0",
|
|
56
|
+
"typescript": "5.9.2",
|
|
57
|
+
"vitest": "^2.1.8",
|
|
58
|
+
"@paradoc/eslint-config": "0.1.0",
|
|
59
|
+
"@paradoc/typescript-config": "0.1.0"
|
|
60
|
+
},
|
|
61
|
+
"scripts": {
|
|
62
|
+
"build": "tsup",
|
|
63
|
+
"dev": "tsup --watch",
|
|
64
|
+
"clean": "rm -rf dist",
|
|
65
|
+
"prebuild": "pnpm run clean",
|
|
66
|
+
"pack:dry": "pnpm run build && npm pack --dry-run",
|
|
67
|
+
"lint": "eslint .",
|
|
68
|
+
"check-types": "tsc --noEmit",
|
|
69
|
+
"check": "pnpm lint && pnpm check-types",
|
|
70
|
+
"test": "vitest run",
|
|
71
|
+
"test:watch": "vitest",
|
|
72
|
+
"test:coverage": "vitest run --coverage"
|
|
73
|
+
}
|
|
74
|
+
}
|