-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.34 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.34 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
{
"name": "@simtlix/simfinity-fe-components",
"version": "1.0.22",
"type": "module",
"description": "Simfinity Frontend Components - A dynamic, schema-driven form management system built with @simtlix/simfinity-js-client and Material-UI",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./client": {
"import": "./dist/client.esm.js",
"require": "./dist/client.js",
"types": "./dist/client.d.ts"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"type-check": "tsc --noEmit",
"lint": "eslint src --ext .ts,.tsx",
"prepublishOnly": "npm run build"
},
"keywords": [
"react",
"typescript",
"simfinity-js-client",
"material-ui",
"forms",
"schema-driven",
"simfinity"
],
"author": "Simtlix",
"license": "MIT",
"peerDependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.1",
"@mui/material": "^7.3.1",
"@mui/system": "^7.3.1",
"@mui/x-data-grid": "^8.10.0",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.5",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.5.6",
"rollup": "^4.9.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"tslib": "^2.8.1",
"typescript": "^5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simtlix/simfinity-fe-components.git"
},
"bugs": {
"url": "https://github.com/simtlix/simfinity-fe-components/issues"
},
"homepage": "https://github.com/simtlix/simfinity-fe-components#readme",
"dependencies": {
"@simtlix/simfinity-js-client": "^1.0.6",
"@types/classnames": "^2.3.0",
"classnames": "^2.5.1"
}
}