UNPKG

1.37 kBJSONView Raw
1{
2 "author": "Dead Pixels Collective",
3 "bugs": {
4 "url": "https://github.com/deathbeds/jupyterlab-fonts/issues"
5 },
6 "description": "Code Fonts for JupyterLab",
7 "files": [
8 "{lib,style,schema,src}/**/*.{d.ts,js,css,svg,json,ts,tsx,js.map}",
9 "{LICENSE,README.md}"
10 ],
11 "keywords": [
12 "jupyter",
13 "jupyterlab",
14 "fonts",
15 "jupyterlab-extension"
16 ],
17 "license": "BSD-3-Clause",
18 "main": "lib/index.js",
19 "name": "@deathbeds/jupyterlab-fonts",
20 "repository": {
21 "type": "git",
22 "url": "https://github.com/deathbeds/jupyterlab-fonts.git"
23 },
24 "types": "lib/index.d.ts",
25 "version": "1.0.0",
26 "dependencies": {
27 "jss-preset-default": "^4.5.0",
28 "jss": "^9.8.7",
29 "@jupyterlab/application": "2",
30 "@jupyterlab/mainmenu": "2",
31 "@jupyterlab/notebook": "2"
32 },
33 "jupyterlab": {
34 "extension": "lib/extension.js",
35 "schemaDir": "schema"
36 },
37 "devDependencies": {
38 "@types/jss": "^9.5.3",
39 "watch": "^1.0.2"
40 },
41 "scripts": {
42 "build:schema": "json2ts schema/fonts.json --strictIndexSignatures | prettier --config=../../.prettierrc --stdin --stdin-filepath src/_schema.d.ts > src/_schema.d.ts",
43 "prebuild": "jlpm build:schema && jlpm copy:schema",
44 "copy:schema": "mkdir -p lib && cp src/_schema.d.ts lib/",
45 "watch": "tsc -w",
46 "watch:schema": "watch 'jlpm build:schema' schema"
47 }
48}