-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathpackage.json
92 lines (92 loc) · 2.83 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
{
"name": "ipysheet",
"version": "0.7.0",
"description": "Spreadsheet in the Jupyter notebook.",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/jupyter-widgets-contrib/ipysheet",
"bugs": {
"url": "https://github.com/jupyter-widgets-contrib/ipysheet/issues"
},
"license": "MIT",
"author": {
"name": "Maarten A. Breddels",
"email": "[email protected]"
},
"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}",
"dist/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf,js.LICENSE.txt}"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"repository": {
"type": "git",
"url": "https://github.com/jupyter-widgets-contrib/ipysheet.git"
},
"scripts": {
"build": "jlpm run build:lib && jlpm run build:nbextension && jlpm run build:labextension",
"build:prod": "jlpm run clean && jlpm run build:lib && jlpm run build:labextension",
"build:nbextension": "webpack",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc",
"clean": "jlpm run clean:lib",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:labextension": "rimraf ipysheet/labextension",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"build:extensions": "jlpm run build",
"watch": "run-p watch:src watch:labextension",
"watch:src": "tsc -w",
"watch:labextension": "jupyter labextension watch ."
},
"resolutions": {
"@types/backbone": "1.4.1",
"handsontable": "6.2.2"
},
"dependencies": {
"@jupyter-widgets/base": "^4 || ^5 || ^6",
"@lumino/application": "^1.6.0",
"@lumino/widgets": "^1.6.0",
"handsontable": "^6.2.2"
},
"devDependencies": {
"@jupyterlab/builder": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"css-loader": "^6.2.0",
"source-map-loader": "^3.0.0",
"ts-loader": "^9.2.5",
"style-loader": "^3.2.1",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"typescript": "~4.1.3",
"webpack": "^5",
"webpack-cli": "^4"
},
"sideEffects": [
"style/*.css",
"style/index.js"
],
"styleModule": "style/index.js",
"jupyterlab": {
"extension": "lib/plugin",
"outputDir": "ipysheet/labextension",
"sharedPackages": {
"@jupyter-widgets/base": {
"bundled": false,
"singleton": true
}
}
}
}