@appforgeapps/uiforge 0.1.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/LICENSE +21 -0
- package/README.md +1241 -0
- package/dist/index.d.ts +847 -0
- package/dist/uiforge.cjs +6 -0
- package/dist/uiforge.css +1 -0
- package/dist/uiforge.js +1882 -0
- package/package.json +94 -0
package/package.json
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@appforgeapps/uiforge",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "A rich user interface library for ReactJS developers written by a seasoned user interface developer who loves working with ReactJS.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/uiforge.cjs",
|
|
7
|
+
"module": "./dist/uiforge.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/uiforge.js",
|
|
13
|
+
"require": "./dist/uiforge.cjs"
|
|
14
|
+
},
|
|
15
|
+
"./styles.css": "./dist/uiforge.css"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist"
|
|
19
|
+
],
|
|
20
|
+
"scripts": {
|
|
21
|
+
"dev": "vite",
|
|
22
|
+
"build": "vite build",
|
|
23
|
+
"preview": "vite preview",
|
|
24
|
+
"test": "vitest",
|
|
25
|
+
"test:ui": "vitest --ui",
|
|
26
|
+
"test:coverage": "vitest --coverage",
|
|
27
|
+
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
28
|
+
"lint:fix": "eslint . --ext ts,tsx --fix",
|
|
29
|
+
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
|
|
30
|
+
"format:check": "prettier --check \"src/**/*.{ts,tsx,css}\"",
|
|
31
|
+
"devcontainer:set-exec": "bash scripts/set-exec-devcontainer-scripts.sh",
|
|
32
|
+
"prepublishOnly": "npm run build"
|
|
33
|
+
},
|
|
34
|
+
"keywords": [
|
|
35
|
+
"react",
|
|
36
|
+
"react-components",
|
|
37
|
+
"ui",
|
|
38
|
+
"ui-library",
|
|
39
|
+
"ui-components",
|
|
40
|
+
"typescript",
|
|
41
|
+
"component-library",
|
|
42
|
+
"design-system",
|
|
43
|
+
"grid",
|
|
44
|
+
"combobox",
|
|
45
|
+
"activity-stream",
|
|
46
|
+
"blocks-editor",
|
|
47
|
+
"video",
|
|
48
|
+
"reactjs",
|
|
49
|
+
"frontend"
|
|
50
|
+
],
|
|
51
|
+
"author": "chriscase",
|
|
52
|
+
"license": "MIT",
|
|
53
|
+
"repository": {
|
|
54
|
+
"type": "git",
|
|
55
|
+
"url": "https://github.com/chriscase/UIForge.git"
|
|
56
|
+
},
|
|
57
|
+
"bugs": {
|
|
58
|
+
"url": "https://github.com/chriscase/UIForge/issues"
|
|
59
|
+
},
|
|
60
|
+
"homepage": "https://github.com/chriscase/UIForge#readme",
|
|
61
|
+
"peerDependencies": {
|
|
62
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
63
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
64
|
+
},
|
|
65
|
+
"devDependencies": {
|
|
66
|
+
"@eslint/js": "^9.39.1",
|
|
67
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
68
|
+
"@testing-library/react": "^16.3.0",
|
|
69
|
+
"@testing-library/user-event": "^14.6.1",
|
|
70
|
+
"@types/react": "^19.2.7",
|
|
71
|
+
"@types/react-dom": "^19.2.3",
|
|
72
|
+
"@typescript-eslint/eslint-plugin": "^8.48.1",
|
|
73
|
+
"@typescript-eslint/parser": "^8.48.1",
|
|
74
|
+
"@vitejs/plugin-react": "^5.1.1",
|
|
75
|
+
"eslint": "^9.39.1",
|
|
76
|
+
"eslint-config-prettier": "^10.1.8",
|
|
77
|
+
"eslint-plugin-react": "^7.37.5",
|
|
78
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
79
|
+
"eslint-plugin-react-refresh": "^0.4.24",
|
|
80
|
+
"globals": "^16.5.0",
|
|
81
|
+
"jsdom": "^27.2.0",
|
|
82
|
+
"prettier": "^3.7.4",
|
|
83
|
+
"react": "^18.0.0",
|
|
84
|
+
"react-dom": "^18.0.0",
|
|
85
|
+
"typescript": "^5.9.3",
|
|
86
|
+
"typescript-eslint": "^8.48.1",
|
|
87
|
+
"vite": "^7.2.6",
|
|
88
|
+
"vite-plugin-dts": "^4.5.4",
|
|
89
|
+
"vitest": "^4.0.15"
|
|
90
|
+
},
|
|
91
|
+
"publishConfig": {
|
|
92
|
+
"access": "public"
|
|
93
|
+
}
|
|
94
|
+
}
|