-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
138 lines (138 loc) · 5.22 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
133
134
135
136
137
138
{
"name": "jupyterlab_autosave_on_focus_change",
"version": "0.4.1",
"description": "Jupyterlab extension to autosave files on focus change",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/s-weigand/jupyterlab_autosave_on_focus_change",
"bugs": {
"url": "https://github.com/s-weigand/jupyterlab_autosave_on_focus_change/issues"
},
"license": "BSD-3-Clause",
"author": {
"name": "Sebastian Weigand",
"email": "[email protected]"
},
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"schema/**/*.json",
"style/index.js"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/s-weigand/jupyterlab_autosave_on_focus_change.git"
},
"scripts": {
"audit-fix": "yarn-audit-fix",
"build": "jlpm build:lib && jlpm build:labextension:dev",
"build:dev": "jlpm run build:lib && jlpm run build:labextension:dev",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc --sourceMap",
"build:lib:prod": "tsc",
"build:prod": "jlpm clean && jlpm build:lib:prod && jlpm build:labextension",
"clean": "jlpm clean:lib",
"clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache",
"clean:docs": "rimraf docs",
"clean:labextension": "rimraf jupyterlab_autosave_on_focus_change/labextension jupyterlab_autosave_on_focus_change/_version.py",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:lintcache": "rimraf .eslintcache .stylelintcache",
"docs": "typedoc --out docs --entryPointStrategy expand src",
"eslint": "jlpm eslint:check --fix",
"eslint:check": "eslint . --cache",
"install:extension": "jlpm build",
"lint": "jlpm stylelint && jlpm prettier && jlpm eslint",
"lint:check": "jlpm stylelint:check && jlpm prettier:check && jlpm eslint:check",
"prettier": "jlpm prettier:base --write --list-different",
"prettier:base": "prettier \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\"",
"prettier:check": "jlpm prettier:base --check",
"stylelint": "jlpm stylelint:check --fix",
"stylelint:check": "stylelint --cache \"style/**/*.css\"",
"watch": "run-p watch:src watch:labextension",
"watch:docs": "typedoc --out docs src --watch",
"watch:labextension": "jupyter labextension watch .",
"watch:src": "tsc -w --sourceMap"
},
"dependencies": {
"@jupyterlab/application": "^4.2.5",
"@jupyterlab/docmanager": "^4.2.5",
"@jupyterlab/fileeditor": "^4.2.5",
"@jupyterlab/mainmenu": "^4.2.5",
"@jupyterlab/notebook": "^4.2.5",
"@jupyterlab/settingregistry": "^4.2.5",
"@lumino/algorithm": "^2.0.2",
"@lumino/widgets": "^2.5.0",
"minimatch": "^10.0.1"
},
"devDependencies": {
"@carlosjeurissen/stylelint-csstree-validator": "^3.1.0",
"@jupyterlab/builder": "^4.2.5",
"@types/json-schema": "^7.0.15",
"@types/minimatch": "^5.1.2",
"@types/node": "^22.7.7",
"@types/react": "^18.3.11",
"@types/react-addons-linked-state-mixin": "^0.14.27",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"css-loader": "^7.1.2",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"source-map-loader": "^5.0.0",
"style-loader": "^4.0.0",
"stylelint": "^16.10.0",
"stylelint-config-recommended": "^14.0.1",
"stylelint-config-standard": "^36.0.1",
"stylelint-prettier": "^5.0.2",
"typedoc": "^0.26.10",
"typescript": "^5.6.3",
"yarn-audit-fix": "^10.0.9",
"yarn-upgrade-all": "^0.7.4",
"yjs": "^13.6.20"
},
"jupyterlab": {
"extension": true,
"schemaDir": "schema",
"outputDir": "jupyterlab_autosave_on_focus_change/labextension"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"endOfLine": "auto",
"overrides": [
{
"files": "package.json",
"options": {
"tabWidth": 4
}
}
]
},
"stylelint": {
"extends": [
"stylelint-config-recommended",
"stylelint-config-standard",
"stylelint-prettier/recommended"
],
"plugins": [
"@carlosjeurissen/stylelint-csstree-validator"
],
"rules": {
"csstree/validator": true,
"property-no-vendor-prefix": null,
"selector-class-pattern": "^([a-z][A-z\\d]*)(-[A-z\\d]+)*$",
"selector-no-vendor-prefix": null,
"value-no-vendor-prefix": null
}
},
"styleModule": "style/index.js"
}