@backstage/ui 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +288 -0
- package/README.md +18 -0
- package/css/styles.css +10823 -0
- package/package.json +85 -0
package/package.json
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@backstage/ui",
|
|
3
|
+
"version": "0.6.0",
|
|
4
|
+
"backstage": {
|
|
5
|
+
"role": "web-library"
|
|
6
|
+
},
|
|
7
|
+
"publishConfig": {
|
|
8
|
+
"access": "public",
|
|
9
|
+
"main": "dist/index.esm.js",
|
|
10
|
+
"types": "dist/index.d.ts"
|
|
11
|
+
},
|
|
12
|
+
"keywords": [
|
|
13
|
+
"backstage"
|
|
14
|
+
],
|
|
15
|
+
"homepage": "https://ui.backstage.io",
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "https://github.com/backstage/backstage",
|
|
19
|
+
"directory": "packages/ui"
|
|
20
|
+
},
|
|
21
|
+
"license": "Apache-2.0",
|
|
22
|
+
"sideEffects": true,
|
|
23
|
+
"main": "dist/index.esm.js",
|
|
24
|
+
"types": "dist/index.d.ts",
|
|
25
|
+
"files": [
|
|
26
|
+
"dist",
|
|
27
|
+
"css"
|
|
28
|
+
],
|
|
29
|
+
"scripts": {
|
|
30
|
+
"build": "yarn build:app && yarn build:css",
|
|
31
|
+
"build-storybook": "storybook build",
|
|
32
|
+
"build:app": "backstage-cli package build",
|
|
33
|
+
"build:css": "node scripts/build-css.mjs",
|
|
34
|
+
"build:css:watch": "node scripts/build-css.mjs --watch",
|
|
35
|
+
"clean": "backstage-cli package clean",
|
|
36
|
+
"lint": "backstage-cli package lint",
|
|
37
|
+
"prepack": "backstage-cli package prepack",
|
|
38
|
+
"postpack": "backstage-cli package postpack",
|
|
39
|
+
"start": "concurrently \"yarn build:css:watch\" \"yarn storybook\"",
|
|
40
|
+
"storybook": "storybook dev -p 6006",
|
|
41
|
+
"test": "backstage-cli package test"
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"@base-ui-components/react": "1.0.0-alpha.7",
|
|
45
|
+
"@remixicon/react": "^4.6.0",
|
|
46
|
+
"@tanstack/react-table": "^8.21.3",
|
|
47
|
+
"clsx": "^2.1.1",
|
|
48
|
+
"motion": "^12.20.1",
|
|
49
|
+
"react-aria-components": "^1.10.1"
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@backstage/cli": "^0.33.1",
|
|
53
|
+
"@storybook/addon-essentials": "^8.6.12",
|
|
54
|
+
"@storybook/addon-interactions": "^8.6.12",
|
|
55
|
+
"@storybook/addon-styling-webpack": "^1.0.1",
|
|
56
|
+
"@storybook/addon-webpack5-compiler-swc": "^3.0.0",
|
|
57
|
+
"@storybook/blocks": "^8.6.12",
|
|
58
|
+
"@storybook/react": "^8.6.12",
|
|
59
|
+
"@storybook/react-webpack5": "^8.6.12",
|
|
60
|
+
"@storybook/test": "^8.6.12",
|
|
61
|
+
"@types/react": "^18.0.0",
|
|
62
|
+
"@types/react-dom": "^18.0.0",
|
|
63
|
+
"chalk": "^5.4.1",
|
|
64
|
+
"eslint-plugin-storybook": "^0.12.0",
|
|
65
|
+
"glob": "^11.0.1",
|
|
66
|
+
"globals": "^15.11.0",
|
|
67
|
+
"lightningcss": "^1.29.1",
|
|
68
|
+
"mini-css-extract-plugin": "^2.9.2",
|
|
69
|
+
"react": "^18.0.2",
|
|
70
|
+
"react-dom": "^18.0.2",
|
|
71
|
+
"react-router-dom": "^6.3.0",
|
|
72
|
+
"storybook": "^8.6.12"
|
|
73
|
+
},
|
|
74
|
+
"peerDependencies": {
|
|
75
|
+
"@types/react": "^17.0.0 || ^18.0.0",
|
|
76
|
+
"react": "^17.0.0 || ^18.0.0",
|
|
77
|
+
"react-dom": "^17.0.0 || ^18.0.0",
|
|
78
|
+
"react-router-dom": "^6.3.0"
|
|
79
|
+
},
|
|
80
|
+
"peerDependenciesMeta": {
|
|
81
|
+
"@types/react": {
|
|
82
|
+
"optional": true
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|