|
1 | 1 | {
|
2 |
| - "name": "ipylab", |
3 |
| - "version": "0.6.0", |
4 |
| - "description": "Control JupyterLab from Python notebooks", |
5 |
| - "keywords": [ |
6 |
| - "jupyter", |
7 |
| - "jupyterlab", |
8 |
| - "jupyterlab-extension", |
9 |
| - "widgets" |
10 |
| - ], |
11 |
| - "files": [ |
12 |
| - "lib/**/*.js", |
13 |
| - "dist/*.js", |
14 |
| - "style/*.css", |
15 |
| - "style/*.js" |
16 |
| - ], |
17 |
| - "homepage": "https://github.com/jtpio/ipylab", |
18 |
| - "bugs": { |
19 |
| - "url": "https://github.com/jtpio/ipylab/issues" |
20 |
| - }, |
21 |
| - "license": "BSD-3-Clause", |
22 |
| - "author": { |
23 |
| - "name": "ipylab contributors", |
24 |
| - "email": "" |
25 |
| - }, |
26 |
| - "main": "lib/index.js", |
27 |
| - "style": "style/widget.css", |
28 |
| - "styleModule": "style/style.js", |
29 |
| - "types": "./lib/index.d.ts", |
30 |
| - "sideEffects": [ |
31 |
| - "style/*.css", |
32 |
| - "style/style.js" |
33 |
| - ], |
34 |
| - "repository": { |
35 |
| - "type": "git", |
36 |
| - "url": "https://github.com/jtpio/ipylab" |
37 |
| - }, |
38 |
| - "scripts": { |
39 |
| - "build": "jlpm run build:lib && jlpm run build:labextension:dev", |
40 |
| - "build:prod": "jlpm run build:lib && jlpm run build:labextension", |
41 |
| - "build:lib": "tsc", |
42 |
| - "build:labextension": "jupyter labextension build .", |
43 |
| - "build:labextension:dev": "jupyter labextension build --development True .", |
44 |
| - "clean": "jlpm run clean:lib ipylab/labextension", |
45 |
| - "clean:lib": "rimraf lib tsconfig.tsbuildinfo", |
46 |
| - "clean:all": "jlpm run clean:lib && jlpm run clean:labextension", |
47 |
| - "clean:labextension": "rimraf ipylab/labextension", |
48 |
| - "eslint": "eslint . --ext .ts,.tsx --fix", |
49 |
| - "eslint:check": "eslint . --ext .ts,.tsx", |
50 |
| - "lint": "jlpm && jlpm run prettier && jlpm run eslint", |
51 |
| - "lint:check": "jlpm run prettier:check && jlpm run eslint:check", |
52 |
| - "prepack": "npm run build", |
53 |
| - "prettier": "prettier --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\" \"!dist/**\" \"!docs/**\"", |
54 |
| - "prettier:check": "prettier --list-different \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\" \"!dist/**\" \"!docs/**\"", |
55 |
| - "watch": "npm-run-all -p watch:*", |
56 |
| - "watch:lib": "tsc -w", |
57 |
| - "watch:labextension": "jupyter labextension watch ." |
58 |
| - }, |
59 |
| - "husky": { |
60 |
| - "hooks": { |
61 |
| - "pre-commit": "lint-staged" |
62 |
| - } |
63 |
| - }, |
64 |
| - "lint-staged": { |
65 |
| - "**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}": [ |
66 |
| - "prettier --write", |
67 |
| - "git add" |
| 2 | + "name": "ipylab", |
| 3 | + "version": "0.7.0", |
| 4 | + "description": "Control JupyterLab from Python notebooks", |
| 5 | + "keywords": [ |
| 6 | + "jupyter", |
| 7 | + "jupyterlab", |
| 8 | + "jupyterlab-extension", |
| 9 | + "widgets" |
| 10 | + ], |
| 11 | + "files": [ |
| 12 | + "lib/**/*.js", |
| 13 | + "dist/*.js", |
| 14 | + "style/*.css", |
| 15 | + "style/*.js" |
| 16 | + ], |
| 17 | + "homepage": "https://github.com/jtpio/ipylab", |
| 18 | + "bugs": { |
| 19 | + "url": "https://github.com/jtpio/ipylab/issues" |
| 20 | + }, |
| 21 | + "license": "BSD-3-Clause", |
| 22 | + "author": { |
| 23 | + "name": "ipylab contributors", |
| 24 | + "email": "" |
| 25 | + }, |
| 26 | + "main": "lib/index.js", |
| 27 | + "style": "style/widget.css", |
| 28 | + "styleModule": "style/style.js", |
| 29 | + "types": "./lib/index.d.ts", |
| 30 | + "sideEffects": [ |
| 31 | + "style/*.css", |
| 32 | + "style/style.js" |
68 | 33 | ],
|
69 |
| - "**/*{.py}": [ |
70 |
| - "black", |
71 |
| - "git add" |
72 |
| - ] |
73 |
| - }, |
74 |
| - "dependencies": { |
75 |
| - "@jupyter-widgets/base": "^1 || ^2 || ^3 || ^4 || ^5 || ^6", |
76 |
| - "@jupyter-widgets/controls": "^3 || ^4 || ^5", |
77 |
| - "@jupyterlab/application": "^3.4.5", |
78 |
| - "@jupyterlab/apputils": "^3.4.5", |
79 |
| - "@jupyterlab/observables": "^4.4.5", |
80 |
| - "@lumino/algorithm": "^1.9.2", |
81 |
| - "@lumino/commands": "^1.20.1", |
82 |
| - "@lumino/disposable": "^1.10.2", |
83 |
| - "@lumino/messaging": "^1.10.2", |
84 |
| - "@lumino/widgets": "^1.34.0" |
85 |
| - }, |
86 |
| - "devDependencies": { |
87 |
| - "@jupyterlab/builder": "^3.4.5", |
88 |
| - "@types/expect.js": "^0.3.29", |
89 |
| - "@types/node": "^18.7.8", |
90 |
| - "@typescript-eslint/eslint-plugin": "^5.33.1", |
91 |
| - "@typescript-eslint/parser": "^5.33.1", |
92 |
| - "eslint": "^8.22.0", |
93 |
| - "eslint-config-prettier": "^8.5.0", |
94 |
| - "eslint-plugin-jsdoc": "^39.3.6", |
95 |
| - "eslint-plugin-prettier": "^4.2.1", |
96 |
| - "eslint-plugin-react": "^7.30.1", |
97 |
| - "expect.js": "^0.3.1", |
98 |
| - "fs-extra": "^10.1.0", |
99 |
| - "husky": "^8.0.1", |
100 |
| - "lint-staged": "^13.0.3", |
101 |
| - "mkdirp": "^1.0.4", |
102 |
| - "npm-run-all": "^4.1.5", |
103 |
| - "prettier": "^2.7.1", |
104 |
| - "rimraf": "^3.0.2", |
105 |
| - "typescript": "~4.7.4" |
106 |
| - }, |
107 |
| - "jupyterlab": { |
108 |
| - "extension": "lib/plugin", |
109 |
| - "outputDir": "ipylab/labextension/", |
110 |
| - "sharedPackages": { |
111 |
| - "@jupyter-widgets/base": { |
112 |
| - "bundled": false, |
113 |
| - "singleton": true |
114 |
| - } |
| 34 | + "repository": { |
| 35 | + "type": "git", |
| 36 | + "url": "https://github.com/jtpio/ipylab" |
| 37 | + }, |
| 38 | + "scripts": { |
| 39 | + "build": "jlpm run build:lib && jlpm run build:labextension:dev", |
| 40 | + "build:prod": "jlpm run build:lib && jlpm run build:labextension", |
| 41 | + "build:lib": "tsc", |
| 42 | + "build:labextension": "jupyter labextension build .", |
| 43 | + "build:labextension:dev": "jupyter labextension build --development True .", |
| 44 | + "clean": "jlpm run clean:lib ipylab/labextension", |
| 45 | + "clean:lib": "rimraf lib tsconfig.tsbuildinfo", |
| 46 | + "clean:all": "jlpm run clean:lib && jlpm run clean:labextension", |
| 47 | + "clean:labextension": "rimraf ipylab/labextension", |
| 48 | + "eslint": "eslint . --ext .ts,.tsx --fix", |
| 49 | + "eslint:check": "eslint . --ext .ts,.tsx", |
| 50 | + "lint": "jlpm && jlpm run prettier && jlpm run eslint", |
| 51 | + "lint:check": "jlpm run prettier:check && jlpm run eslint:check", |
| 52 | + "prepack": "npm run build", |
| 53 | + "prettier": "prettier --write \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\" \"!dist/**\" \"!docs/**\"", |
| 54 | + "prettier:check": "prettier --list-different \"**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}\" \"!dist/**\" \"!docs/**\"", |
| 55 | + "watch": "npm-run-all -p watch:*", |
| 56 | + "watch:lib": "tsc -w", |
| 57 | + "watch:labextension": "jupyter labextension watch ." |
| 58 | + }, |
| 59 | + "husky": { |
| 60 | + "hooks": { |
| 61 | + "pre-commit": "lint-staged" |
| 62 | + } |
| 63 | + }, |
| 64 | + "lint-staged": { |
| 65 | + "**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}": [ |
| 66 | + "prettier --write", |
| 67 | + "git add" |
| 68 | + ], |
| 69 | + "**/*{.py}": [ |
| 70 | + "black", |
| 71 | + "git add" |
| 72 | + ] |
| 73 | + }, |
| 74 | + "dependencies": { |
| 75 | + "@jupyter-widgets/base": "^1 || ^2 || ^3 || ^4 || ^5 || ^6", |
| 76 | + "@jupyter-widgets/controls": "^3 || ^4 || ^5", |
| 77 | + "@jupyterlab/application": "^3.4.5", |
| 78 | + "@jupyterlab/apputils": "^3.4.5", |
| 79 | + "@jupyterlab/observables": "^4.4.5", |
| 80 | + "@lumino/algorithm": "^1.9.2", |
| 81 | + "@lumino/commands": "^1.20.1", |
| 82 | + "@lumino/disposable": "^1.10.2", |
| 83 | + "@lumino/messaging": "^1.10.2", |
| 84 | + "@lumino/widgets": "^1.34.0" |
| 85 | + }, |
| 86 | + "devDependencies": { |
| 87 | + "@jupyterlab/builder": "^3.4.5", |
| 88 | + "@types/expect.js": "^0.3.29", |
| 89 | + "@types/node": "^18.7.8", |
| 90 | + "@typescript-eslint/eslint-plugin": "^5.33.1", |
| 91 | + "@typescript-eslint/parser": "^5.33.1", |
| 92 | + "eslint": "^8.22.0", |
| 93 | + "eslint-config-prettier": "^8.5.0", |
| 94 | + "eslint-plugin-jsdoc": "^39.3.6", |
| 95 | + "eslint-plugin-prettier": "^4.2.1", |
| 96 | + "eslint-plugin-react": "^7.30.1", |
| 97 | + "expect.js": "^0.3.1", |
| 98 | + "fs-extra": "^10.1.0", |
| 99 | + "husky": "^8.0.1", |
| 100 | + "lint-staged": "^13.0.3", |
| 101 | + "mkdirp": "^1.0.4", |
| 102 | + "npm-run-all": "^4.1.5", |
| 103 | + "prettier": "^2.7.1", |
| 104 | + "rimraf": "^3.0.2", |
| 105 | + "typescript": "~4.7.4" |
| 106 | + }, |
| 107 | + "jupyterlab": { |
| 108 | + "extension": "lib/plugin", |
| 109 | + "outputDir": "ipylab/labextension/", |
| 110 | + "sharedPackages": { |
| 111 | + "@jupyter-widgets/base": { |
| 112 | + "bundled": false, |
| 113 | + "singleton": true |
| 114 | + } |
| 115 | + } |
115 | 116 | }
|
116 |
| - } |
117 | 117 | }
|
0 commit comments