-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
132 lines (132 loc) · 4.03 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
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
124
125
126
127
128
129
130
131
132
{
"name": "neopyter",
"type": "module",
"version": "0.3.1",
"description": "A JupyterLab extension. Integrate JupyterLab and Neovim",
"author": {
"name": "Abao Zhang",
"email": "[email protected]"
},
"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",
"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 .stylelintcache",
"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 stylelint && pnpm eslint",
"lint:check": "pnpm stylelint:check && pnpm eslint:check",
"stylelint": "pnpm stylelint:check --fix",
"stylelint:check": "stylelint --cache \"style/**/*.css\"",
"test": "jest --coverage",
"watch": "run-p watch:src watch:labextension",
"watch:src": "tsc -w --strict false --sourceMap",
"watch:labextension": "jupyter labextension watch .",
"prepare": "husky install"
},
"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": "^3.12.0",
"@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.17.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.11",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.10",
"stylelint": "^15.11.0",
"stylelint-config-recommended": "^13.0.0",
"stylelint-config-standard": "^34.0.0",
"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"
},
"stylelint": {
"extends": [
"stylelint-config-recommended",
"stylelint-config-standard"
],
"rules": {
"property-no-vendor-prefix": null,
"selector-no-vendor-prefix": null,
"value-no-vendor-prefix": null
}
},
"lint-staged": {
"*.py": "ruff format",
"*.css": "pnpm stylelint",
"*.{json,js,jsx,ts,tsx}": "pnpm eslint"
}
}