-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.75 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
{
"name": "@jupyter/builder",
"version": "1.2.2",
"description": "Jupyter build tools.",
"keywords": [
"jupyter",
"jupyterlab"
],
"homepage": "https://github.com/jupyterlab/jupyter-builder",
"bugs": {
"url": "https://github.com/jupyterlab/jupyter-builder/issues"
},
"license": "BSD-3-Clause",
"packageManager": "yarn@3.5.0",
"author": {
"name": "Jupyter Development Team",
"email": "jupyter@googlegroups.com"
},
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"src/**/*.{ts,tsx}"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/jupyterlab/jupyter-builder.git"
},
"scripts": {
"build": "jlpm build:lib",
"build:prod": "jlpm clean && jlpm build:lib:prod",
"build:lib": "tsc --sourceMap",
"build:lib:prod": "tsc",
"clean": "jlpm clean:lib",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:lintcache": "rimraf .eslintcache",
"clean:all": "jlpm clean:lib && jlpm clean:lintcache",
"eslint": "jlpm eslint:check --fix",
"eslint:check": "eslint . --cache --ext .ts,.tsx",
"lint": "jlpm prettier && jlpm eslint",
"lint: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",
"watch": "tsc -w --sourceMap"
},
"dependencies": {
"@jupyterlab/core-meta": "^4.6.1",
"@module-federation/runtime-tools": "^2.0.0",
"@rspack/core": "^2.1.7",
"ajv": "^8.12.0",
"commander": "^9.4.1",
"css-loader": "^7.1.4",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"fs-extra": "^10.1.0",
"glob": "^13.0.6",
"license-webpack-plugin": "^4.0.2",
"mini-svg-data-uri": "^1.4.4",
"path-browserify": "^1.0.0",
"process": "^0.11.10",
"style-loader": "^4.0.0",
"supports-color": "^7.2.0",
"webpack-merge": "^5.8.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/fs-extra": "^9.0.1",
"@types/node": "^20.14.8",
"@types/supports-color": "^5.3.0",
"@types/watchpack": "^2.4.4",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-prettier": "^5.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.1",
"rimraf": "~5.0.5",
"typescript": "~5.9.3",
"typescript-eslint": "^8.0.0"
},
"publishConfig": {
"access": "public"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"endOfLine": "auto",
"overrides": [
{
"files": "package.json",
"options": {
"tabWidth": 2
}
}
]
}
}