-
Notifications
You must be signed in to change notification settings - Fork 422
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.94 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.94 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
{
"name": "@jsonforms/examples",
"version": "3.7.0-alpha.3",
"description": "JSON Forms Example Data",
"repository": {
"type": "git",
"url": "git+https://github.com/eclipsesource/jsonforms.git",
"directory": "packages/examples"
},
"bugs": "https://github.com/eclipsesource/jsonforms/issues",
"homepage": "http://jsonforms.io/",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"directories": {
"icons": "icons",
"lib": "lib",
"library": "library",
"src": "src",
"test": "wct-test"
},
"keywords": [
"form",
"forms",
"json",
"jsonforms",
"frontend",
"generator",
"input",
"renderengine",
"jsonschema",
"schema",
"uischema",
"layout",
"customization"
],
"main": "lib/jsonforms-examples.cjs.js",
"module": "lib/jsonforms-examples.esm.js",
"typings": "./lib/index.d.ts",
"scripts": {
"build": "rollup -c rollup.config.js",
"clean": "rimraf lib coverage dist .nyc_output 2> /dev/null",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "echo 'Nothing to do for `examples` package'",
"doc": "typedoc --name 'JSON Forms Examples' --excludeExternals --out docs src"
},
"dependencies": {
"ajv-i18n": "^4.2.0",
"lodash": "^4.17.21"
},
"peerDependencies": {
"@jsonforms/core": "3.7.0-alpha.3"
},
"devDependencies": {
"@jsonforms/core": "workspace:*",
"@types/node": "^22.13.8",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.4",
"rimraf": "^6.1.0",
"rollup": "^2.78.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-typescript2": "^0.34.1",
"rollup-plugin-visualizer": "^5.4.1",
"tslib": "^2.5.0",
"typedoc": "~0.25.3",
"typescript": "~5.5.0"
}
}