-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 4.45 KB
/
Copy pathpackage.json
File metadata and controls
118 lines (118 loc) · 4.45 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
{
"name": "@jupyterlab/ui-profiler",
"version": "0.3.1",
"description": "JupyterLab extension for profiling UI performance",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/jupyterlab/ui-profiler",
"bugs": {
"url": "https://github.com/jupyterlab/ui-profiler/issues"
},
"license": "BSD-3-Clause",
"author": {
"name": "Project Jupyter Contributors",
"email": ""
},
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.{css,js,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
"schema/*.json"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"repository": {
"type": "git",
"url": "https://github.com/jupyterlab/ui-profiler.git"
},
"scripts": {
"build": "jlpm build:lib && jlpm build:labextension:dev",
"build:prod": "jlpm clean && jlpm build:lib && jlpm build:labextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "jlpm build:schema && tsc",
"build:schema": "find -path './src/schema/*.json' | grep -Po 'schema/\\K[^/]*?(?=.json)' | xargs -I % sh -c 'json2ts src/schema/%.json | prettier --stdin-filepath _%.d.ts > src/types/_%.ts'",
"clean": "jlpm clean:lib",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:lintcache": "rimraf .eslintcache .stylelintcache",
"clean:labextension": "rimraf jupyterlab-ui-profiler/labextension",
"clean:all": "jlpm clean:lib && jlpm clean:labextension && jlpm clean:lintcache",
"eslint": "jlpm eslint:check --fix",
"eslint:check": "eslint . --cache --ext .ts,.tsx",
"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\"",
"test": "jest --coverage",
"watch": "run-p watch:src watch:labextension",
"watch:src": "tsc -w",
"watch:labextension": "jupyter labextension watch ."
},
"dependencies": {
"@jupyterlab/application": "^4.4.10",
"@jupyterlab/json-extension": "^4.4.10"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@jupyterlab/apputils": "^4.5.10",
"@jupyterlab/builder": "^4.4.10",
"@jupyterlab/filebrowser": "^4.4.10",
"@jupyterlab/launcher": "^4.4.10",
"@jupyterlab/testutils": "^4.4.10",
"@jupyterlab/ui-components": "^4.4.10",
"@lumino/datagrid": "^2.5.2",
"@lumino/widgets": "^2.7.1",
"@rjsf/core": "^5.13.4",
"@rjsf/validator-ajv8": "^5.13.4",
"@types/jest": "^30.0.0",
"@types/json-schema": "^7.0.15",
"@typescript-eslint/eslint-plugin": "~6.13.2",
"@typescript-eslint/parser": "~6.13.2",
"eslint": "~8.55.0",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-prettier": "~5.0.1",
"jest": "^29.2.0",
"json-schema-to-typescript": "^8.2.0",
"npm-run-all": "^4.1.5",
"prettier": "~3.0.0",
"rimraf": "^3.0.2",
"stylelint": "^15.10.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^13.0.0",
"stylelint-config-standard": "~34.0.0",
"stylelint-prettier": "^4.0.0",
"ts-jest": "^29.1.0",
"typescript": "~5.5.4"
},
"resolutions": {
"@rjsf/validator-ajv8": "5.14.3",
"@rjsf/core": "5.14.3",
"@rjsf/utils": "5.14.3"
},
"sideEffects": [
"style/*.css",
"style/index.js"
],
"styleModule": "style/index.js",
"publishConfig": {
"access": "public"
},
"jupyterlab": {
"extension": true,
"outputDir": "jupyterlab_ui_profiler/labextension",
"sharedPackages": {
"@lumino/datagrid": {
"singleton": true,
"bundled": false
}
}
}
}