-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.81 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
{
"name": "@openwebwork/codemirror-lang-pg",
"version": "0.0.5",
"description": "PG language support for CodeMirror",
"author": "The WeBWorK Project",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/openwebwork/codemirror-lang-pg.git"
},
"homepage": "https://github.com/openwebwork/codemirror-lang-pg",
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"generate-terms": "node generate-terms.js",
"build": "rollup -c",
"watch": "rollup -cw",
"test": "mocha"
},
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"types": "dist/index.d.ts",
"sideEffects": false,
"dependencies": {
"@codemirror/language": "^6.12.3",
"@lezer/highlight": "^1.2.3",
"@lezer/lr": "^1.4.8"
},
"devDependencies": {
"@codemirror/autocomplete": "^6.20.1",
"@eslint/js": "^10.0.1",
"@lezer/generator": "^1.8.0",
"@rollup/plugin-typescript": "^12.3.0",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/mocha": "^10.0.10",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-mocha": "^11.2.0",
"mocha": "^11.7.5",
"prettier": "^3.8.2",
"rollup": "^4.60.1",
"rollup-plugin-dts": "^6.4.1",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.1"
},
"overrides": {
"diff": "^8.0.3",
"serialize-javascript": "^7.0.2",
"glob": "^13.0.6"
}
}