-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
107 lines (107 loc) · 3.84 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@jupyter/web-components",
"version": "0.16.5",
"description": "A component library for building extensions in Jupyter frontends.",
"homepage": "https://github.com/jupyterlab-contrib/jupyter-ui-toolkit#readme",
"license": "BSD-3-Clause",
"author": "Project Jupyter",
"keywords": [
"Jupyter",
"FAST Design",
"Custom elements",
"Web components"
],
"bugs": {
"url": "https://github.com/jupyterlab-contrib/jupyter-ui-toolkit/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jupyterlab-contrib/jupyter-ui-toolkit.git"
},
"main": "dist/esm/index.js",
"types": "dist/dts/index.d.ts",
"sideEffects": false,
"type": "module",
"scripts": {
"start": "storybook dev -p 6006",
"start:ci": "storybook dev -p 6006 --ci --quiet",
"build": "rollup -c && tsc -p ./tsconfig.json",
"build:cem": "custom-elements-manifest analyze",
"build:docs": "storybook build",
"build:react": "BUILD_REACT=1 yarn run build:cem",
"clean": "yarn clean:lib && yarn clean:test",
"clean:lib": "rimraf dist",
"clean:test": "rimraf test-results tests-out/**/*.js tests-out/**/*.js.map tsconfig.playwright.tsbuildinfo",
"deploy:docs": "yarn run build:docs && gh-pages -d storybook-static",
"doc": "api-extractor run --local",
"prettier:check": "prettier --config ../../.prettierrc --check \"src/**/*.ts\"",
"prettier": "tsc-esm-fix --src=\"src\" --ext=\".js\" && prettier --config ../../.prettierrc --write \"src/**/*.ts\"",
"eslint:check": "eslint . --ext .ts",
"eslint": "eslint . --ext .ts --fix",
"prepublishOnly": "rimraf README.md && cp ../../README.md . && yarn run build",
"test": "jest --verbose --coverage || echo \"FIXME\"",
"test:visual": "playwright test"
},
"dependencies": {
"@microsoft/fast-colors": "^5.3.1",
"@microsoft/fast-element": "^1.12.0",
"@microsoft/fast-foundation": "^2.49.4",
"@microsoft/fast-web-utilities": "^5.4.1"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@custom-elements-manifest/analyzer": "^0.10.2",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@microsoft/api-extractor": "^7.36.0",
"@playwright/test": "^1.35.1",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@storybook/addon-a11y": "^7.5.3",
"@storybook/addon-actions": "^7.5.3",
"@storybook/addon-docs": "^7.5.3",
"@storybook/addon-essentials": "^7.5.3",
"@storybook/addon-links": "^7.5.3",
"@storybook/addons": "^7.5.3",
"@storybook/blocks": "^7.5.3",
"@storybook/html": "^7.5.3",
"@storybook/html-webpack5": "^7.5.3",
"@storybook/theming": "^7.5.3",
"@types/jest": "^29.0.0",
"@types/node": "^18.0.0",
"@types/webpack-env": "^1.15.2",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"custom-element-react-wrappers": "^1.6.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-storybook": "^0.6.15",
"gh-pages": "^5.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.3.0",
"prettier": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remark-gfm": "^3.0.1",
"resolve-typescript-plugin": "^1.1.5",
"rimraf": "^5.0.1",
"rollup": "^2.40.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-transform-tagged-template": "0.0.3",
"rollup-plugin-typescript2": "^0.27.0",
"storybook": "^7.5.3",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.3",
"tsc-esm-fix": "^2.20.21",
"tslib": "^2.6.0",
"typescript": "~5.2.2",
"webpack": "^5.0.0"
},
"publishConfig": {
"access": "public"
},
"customElements": "dist/custom-elements.json"
}