@traqula/rules-sparql-1-1-adjust 0.0.1-alpha.137

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/lib/index.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ export * as gram from './grammar';
2
+ export * as lex from './lexer';
package/lib/index.js ADDED
@@ -0,0 +1,3 @@
1
+ export * as gram from './grammar';
2
+ export * as lex from './lexer';
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,IAAI,MAAM,WAAW,CAAC;AAClC,OAAO,KAAK,GAAG,MAAM,SAAS,CAAC","sourcesContent":["export * as gram from './grammar';\nexport * as lex from './lexer';"]}
package/lib/lexer.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ export declare const BuiltInAdjust: import("chevrotain").TokenType & {
2
+ name: "BuiltInAdjust";
3
+ };
package/lib/lexer.js ADDED
@@ -0,0 +1,3 @@
1
+ import { createToken } from "@traqula/core";
2
+ export const BuiltInAdjust = createToken({ name: 'BuiltInAdjust', pattern: 'ADJUST' });
3
+ //# sourceMappingURL=lexer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"lexer.js","sourceRoot":"","sources":["lexer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,WAAW,EAAC,MAAM,eAAe,CAAC;AAE1C,MAAM,CAAC,MAAM,aAAa,GAAG,WAAW,CAAC,EAAE,IAAI,EAAE,eAAe,EAAE,OAAO,EAAE,QAAQ,EAAE,CAAC,CAAC","sourcesContent":["import {createToken} from \"@traqula/core\";\n\nexport const BuiltInAdjust = createToken({ name: 'BuiltInAdjust', pattern: 'ADJUST' });"]}
package/package.json ADDED
@@ -0,0 +1,45 @@
1
+ {
2
+ "name": "@traqula/rules-sparql-1-1-adjust",
3
+ "version": "0.0.1-alpha.137+3a4c48f",
4
+ "description": "TRAQULA Lexer and Grammar Rules for sparql 1.1-ADJUST",
5
+ "lsd:module": true,
6
+ "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/comunica/traqula.git",
10
+ "directory": "packages/rules-sparql-1-1-adjust"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/comunica/traqula/issues"
14
+ },
15
+ "sideEffects": false,
16
+ "publishConfig": {
17
+ "access": "public"
18
+ },
19
+ "files": [
20
+ "lib/**/*.d.ts",
21
+ "lib/**/*.js",
22
+ "lib/**/*.cjs",
23
+ "lib/**/*.js.map"
24
+ ],
25
+ "engines": {
26
+ "node": ">=18.0"
27
+ },
28
+ "typings": "lib/index",
29
+ "type": "module",
30
+ "main": "lib/index.js",
31
+ "exports": {
32
+ "import": "./lib/index.js",
33
+ "require": "./lib/index.cjs"
34
+ },
35
+ "scripts": {
36
+ "build": "yarn build:ts && yarn build:transpile",
37
+ "build:ts": "node \"../../node_modules/typescript/bin/tsc\"",
38
+ "build:transpile": " node \"../../node_modules/esbuild/bin/esbuild\" --format=cjs --bundle --log-level=error --outfile=lib/index.cjs lib/index.ts"
39
+ },
40
+ "dependencies": {
41
+ "@traqula/core": "^0.0.1-alpha.137+3a4c48f",
42
+ "@traqula/rules-sparql-1-1": "^0.0.1-alpha.137+3a4c48f"
43
+ },
44
+ "gitHead": "3a4c48fd219306b10726fb018b5a1f0ac2abed81"
45
+ }