@rs-x/compiler 2.0.0-next.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/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "@rs-x/compiler",
3
+ "version": "2.0.0-next.0",
4
+ "description": "Compile-time tooling scaffold for RS-X expression analysis and diagnostics",
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
+ "require": "./dist/index.cjs"
14
+ }
15
+ },
16
+ "sideEffects": false,
17
+ "files": [
18
+ "dist"
19
+ ],
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "https://github.com/robert-sanders-software-ontwikkeling/rs-x"
23
+ },
24
+ "homepage": "https://rsxjs.com",
25
+ "bugs": {
26
+ "url": "https://github.com/robert-sanders-software-ontwikkeling/rs-x/issues"
27
+ },
28
+ "publishConfig": {
29
+ "access": "public",
30
+ "provenance": true
31
+ },
32
+ "dependencies": {
33
+ "typescript": "^5.9.3",
34
+ "@rs-x/expression-parser": "2.0.0-next.0"
35
+ },
36
+ "devDependencies": {
37
+ "globals": "^17.3.0",
38
+ "rimraf": "^6.1.2",
39
+ "tsup": "^8.5.1"
40
+ },
41
+ "engines": {
42
+ "node": ">=24"
43
+ },
44
+ "keywords": [
45
+ "rs-x",
46
+ "compiler",
47
+ "typescript",
48
+ "language-service",
49
+ "intellisense"
50
+ ],
51
+ "scripts": {
52
+ "build": "tsup lib/index.ts --format esm,cjs --dts --tsconfig ../tsconfig.build.json",
53
+ "clean": "rimraf dist",
54
+ "test": "cross-env TZ=UTC pnpm jest --runInBand --no-cache --config ../jest.config.ts rs-x-compiler/tests"
55
+ }
56
+ }