-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.86 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@nasa-jpl/aerie-sequence-languages",
"version": "1.0.2",
"description": "Consolidated parsing for languages with first-party support in Aerie sequencing",
"type": "module",
"author": "NASA/JPL",
"license": "MIT",
"homepage": "https://nasa-ammos.github.io/aerie-docs/",
"bugs": "https://github.com/NASA-AMMOS/aerie/issues",
"contributors": [
"Ryan Goetz <Ryan.R.Goetz@jpl.nasa.gov>",
"Carter Mak <Carter.Mak@jpl.nasa.gov>"
],
"repository": {
"type": "git",
"url": "https://github.com/NASA-AMMOS/aerie-sequence-languages.git"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/cjs/index.d.ts",
"exports": {
".": {
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
},
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
}
}
},
"scripts": {
"satf": "rimraf ./src/languages/satf/grammar/satf-sasf.grammar.js; lezer-generator ./src/languages/satf/grammar/satf-sasf.grammar -o ./src/languages/satf/grammar/satf-sasf.grammar.js",
"seqn": "rimraf ./src/languages/seq-n/seq-n.grammar.js; lezer-generator ./src/languages/seq-n/seq-n.grammar -o ./src/languages/seq-n/seq-n.grammar.js",
"vml": "rimraf ./src/languages/vml/vml.grammar.js; lezer-generator ./src/languages/vml/vml.grammar -o ./src/languages/vml/vml.grammar.js",
"grammar-builder": "npm run satf; npm run seqn && npm run vml",
"test": "npm run grammar-builder && vitest run",
"build": "npm run clean; npm run grammar-builder; tsc -p tsconfig.json && tsc -p tsconfig.esm.json",
"clean": "rimraf ./dist",
"format:check": "prettier --check ./src",
"format:write": "prettier --write ./src",
"prepublishOnly": "npm run build"
},
"files": [
"dist/"
],
"keywords": [
"aerie",
"satf",
"sasf",
"seqN",
"sequence",
"language"
],
"devDependencies": {
"@lezer/generator": "^1.7.3",
"@types/json-source-map": "^0.6.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.15.2",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.43.0",
"eslint-config-prettier": "^9.1.2",
"prettier": "^3.5.3",
"rimraf": "^5.0.5",
"typescript": "^5.8.2",
"vitest": "^3.1.1"
},
"dependencies": {
"@codemirror/autocomplete": "^6.19.0",
"@codemirror/commands": "^6.9.0",
"@codemirror/language": "^6.11.0",
"@codemirror/lint": "^6.8.5",
"@codemirror/view": "^6.38.2",
"@lezer/common": "^1.2.3",
"@lezer/lr": "^1.4.2",
"@nasa-jpl/aerie-ampcs": "^1.0.6",
"@nasa-jpl/aerie-time-utils": "^1.0.2",
"@nasa-jpl/seq-json-schema": "^1.3.1",
"fastest-levenshtein": "^1.0.16",
"json-source-map": "^0.6.1",
"lodash-es": "^4.17.21"
},
"publishConfig": {
"access": "public"
}
}