-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.53 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.53 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "neopyter",
"type": "module",
"version": "0.3.2",
"description": "A JupyterLab extension. Integrate JupyterLab and Neovim",
"author": {
"name": "Abao Zhang",
"email": "abaodoit@gmail.com"
},
"license": "BSD-3-Clause",
"homepage": "https://github.com/SUSTech-data/neopyter",
"repository": {
"type": "git",
"url": "https://github.com/SUSTech-data/neopyter"
},
"bugs": {
"url": "https://github.com/SUSTech-data/neopyter/issues"
},
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"neovim"
],
"sideEffects": [
"style/*.css",
"style/index.js"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"schema/*.json",
"style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
],
"style": "style/index.css",
"contributes": {
"snippets": [
{
"language": [
"python"
],
"path": "./snippets/python.json"
}
]
},
"scripts": {
"build": "pnpm build:lib && pnpm build:labextension:dev",
"build:prod": "run-s clean build:lib:prod build:labextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc",
"build:lib:prod": "tsc",
"clean": "pnpm clean:lib",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:lintcache": "rimraf .eslintcache",
"clean:labextension": "rimraf neopyter/labextension neopyter/_version.py",
"clean:all": "pnpm clean:lib && pnpm clean:labextension && pnpm clean:lintcache",
"eslint": "pnpm eslint:check --fix",
"eslint:check": "eslint . --cache",
"install:extension": "pnpm build",
"lint": "pnpm eslint",
"lint:check": "pnpm eslint:check",
"test": "jest --coverage",
"watch": "run-p watch:src watch:labextension",
"watch:src": "tsc -w --strict false --sourceMap",
"watch:labextension": "jupyter labextension watch ."
},
"dependencies": {
"@jupyterlab/application": "^4.3.4",
"@jupyterlab/apputils": "^4.4.4",
"@jupyterlab/logconsole": "^4.3.4",
"@jupyterlab/notebook": "^4.3.4",
"@lumino/widgets": "^2.5.0",
"@msgpack/msgpack": "3.0.0-beta2",
"@rjsf/antd": "^5.23.2",
"@rjsf/core": "^5.23.2",
"@rjsf/utils": "^5.23.2",
"@rjsf/validator-ajv8": "^5.23.2",
"@types/react": "^18.3.18",
"antd": "^5.22.5",
"react": "^18.3.1",
"remeda": "^1.61.0",
"zustand": "^4.5.5"
},
"devDependencies": {
"@antfu/eslint-config": "^6.7.3",
"@jupyterlab/builder": "^4.3.4",
"@jupyterlab/codeeditor": "^4.3.4",
"@jupyterlab/completer": "^4.3.4",
"@jupyterlab/coreutils": "^6.3.4",
"@jupyterlab/docmanager": "^4.3.4",
"@jupyterlab/services": "^7.3.4",
"@jupyterlab/settingregistry": "^4.3.4",
"@jupyterlab/testutils": "^4.3.4",
"@jupyterlab/ui-components": "^4.3.4",
"@lumino/coreutils": "^2.2.0",
"@lumino/disposable": "^2.1.3",
"@types/jest": "^29.5.14",
"@types/json-schema": "^7.0.15",
"eslint": "^9.39.2",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.10",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2",
"yjs": "^13.6.21"
},
"styleModule": "style/index.js",
"publishConfig": {
"access": "public"
},
"jupyterlab": {
"extension": true,
"schemaDir": "schema",
"outputDir": "neopyter/labextension"
},
"pnpm": {
"onlyBuiltDependencies": [
"@fortawesome/fontawesome-free"
]
}
}