@traqula/rules-sparql-1-1-adjust 0.0.1-alpha.10
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/LICENSE.txt +22 -0
- package/README.md +18 -0
- package/lib/grammar.d.ts +4 -0
- package/lib/grammar.js +8 -0
- package/lib/grammar.js.map +1 -0
- package/lib/index.cjs +14437 -0
- package/lib/index.d.ts +2 -0
- package/lib/index.js +3 -0
- package/lib/index.js.map +1 -0
- package/lib/lexer.d.ts +1 -0
- package/lib/lexer.js +3 -0
- package/lib/lexer.js.map +1 -0
- package/package.json +45 -0
package/lib/index.d.ts
ADDED
package/lib/index.js
ADDED
package/lib/index.js.map
ADDED
|
@@ -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';\n"]}
|
package/lib/lexer.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const BuiltInAdjust: import("@traqula/core").NamedToken<"BuiltInAdjust">;
|
package/lib/lexer.js
ADDED
package/lib/lexer.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lexer.js","sourceRoot":"","sources":["lexer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAE5C,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' });\n"]}
|
package/package.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@traqula/rules-sparql-1-1-adjust",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "0.0.1-alpha.10+6cb01a3",
|
|
5
|
+
"description": "Traqula Lexer and Grammar Rules for sparql 1.1-ADJUST",
|
|
6
|
+
"lsd:module": true,
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/comunica/traqula.git",
|
|
11
|
+
"directory": "packages/rules-sparql-1-1-adjust"
|
|
12
|
+
},
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/comunica/traqula/issues"
|
|
15
|
+
},
|
|
16
|
+
"sideEffects": false,
|
|
17
|
+
"publishConfig": {
|
|
18
|
+
"access": "public"
|
|
19
|
+
},
|
|
20
|
+
"exports": {
|
|
21
|
+
"import": "./lib/index.js",
|
|
22
|
+
"require": "./lib/index.cjs"
|
|
23
|
+
},
|
|
24
|
+
"main": "lib/index.js",
|
|
25
|
+
"files": [
|
|
26
|
+
"lib/**/*.cjs",
|
|
27
|
+
"lib/**/*.d.ts",
|
|
28
|
+
"lib/**/*.js",
|
|
29
|
+
"lib/**/*.js.map"
|
|
30
|
+
],
|
|
31
|
+
"engines": {
|
|
32
|
+
"node": ">=18.0"
|
|
33
|
+
},
|
|
34
|
+
"typings": "lib/index",
|
|
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.10+6cb01a3",
|
|
42
|
+
"@traqula/rules-sparql-1-1": "^0.0.1-alpha.10+6cb01a3"
|
|
43
|
+
},
|
|
44
|
+
"gitHead": "6cb01a3af7ea01e7bcd5aaba638cf74fb45db76b"
|
|
45
|
+
}
|