-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.77 KB
/
package.json
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
{
"name": "kekule-clj",
"version": "0.7.0",
"description": "A Kekule widget for Common Lisp Jupyter",
"keywords": [
"kekule",
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"widgets"
],
"files": [
"lib/**",
"css/**",
"LICENSE.md"
],
"homepage": "https://github.com/yitzchak/kekule-clj",
"bugs": {
"url": "https://github.com/yitzchak/kekule-clj/issues"
},
"license": "MIT",
"author": {
"name": "Tarn W. Burton",
"email": "twburton@gmail.com"
},
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/yitzchak/kekule-clj#no-cursors"
},
"scripts": {
"build": "tsc && jupyter-labextension build",
"lint": "eslint . --ext .ts --fix",
"lint-check": "eslint . --ext .ts",
"prepack": "yarn run build"
},
"dependencies": {
"@jupyter-widgets/base": "^6.0.1",
"kekule": "https://github.com/yitzchak/Kekule.js.git"
},
"devDependencies": {
"@lumino/application": "^2.1.1",
"@lumino/widgets": "^2.1.1",
"@jupyterlab/builder": "^4.0.1",
"@types/node": "^20.2.5",
"@types/resize-observer-browser": "^0.1.7",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "^8.16.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"lint-staged": "^13.0.3",
"typescript": "^5.1.3"
},
"jupyterlab": {
"extension": "lib/plugin",
"outputDir": "prebuilt"
},
"lint-staged": {
"*.ts": [
"eslint . --ext .ts --fix"
]
},
"prettier": {
"singleQuote": true
}
}