-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.04 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
108
109
110
111
{
"author": "Espen Norderud",
"bugs": {
"url": "https://github.com/enonic/npm-react-components/issues"
},
"contributors": [
"Christian Andreas Westgaard <[email protected]>",
"Pavel Milkevich <[email protected]>"
],
"description": "Library of React components for handling Enonic XP data and page components",
"devDependencies": {
"@enonic-types/core": "^7.15.0-A2",
"@enonic-types/guillotine": "^7.1.1",
"@enonic-types/lib-content": "^7.15.0-A2",
"@enonic-types/lib-node": "^7.15.0-A2",
"@enonic-types/lib-portal": "^7.15.0-A2",
"@enonic/js-utils": "^1.8.1",
"@jest/globals": "^29.7.0",
"@swc/core": "^1.10.0",
"@testing-library/react": "^16.0.1",
"@types/diffable-html": "^5.0.2",
"@types/react": "^18.3.13",
"clsx": "^2.1.1",
"concurrently": "^9.1.0",
"cpy-cli": "^5.0.0",
"del-cli": "^6.0.0",
"diffable-html": "^5.0.0",
"domelementtype": "^2.3.0",
"domhandler": "^5.0.3",
"esbuild-plugin-globals": "^0.2.0",
"glob": "^11.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"q-i": "^2.0.1",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"tsup": "^8.3.0",
"typescript": "^5.7.2",
"uri-js": "^4.4.1"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./*": {
"types": "./dist/*.d.ts",
"import": "./dist/*.mjs",
"require": "./dist/*.cjs"
}
},
"files": [
"dist",
"LICENCE",
"package.json",
"README.md"
],
"homepage": "https://github.com/enonic/enonic-react-components",
"keywords": [
"enonic",
"react",
"components",
"RichText",
"Page",
"Region",
"Layout"
],
"license": "Apache-2.0",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"name": "@enonic/react-components",
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "*",
"@swc/core-linux-x64-gnu": "*"
},
"peerDependencies": {
"@enonic-types/core": "^7.15.0-A2",
"@enonic-types/lib-portal": "^7.15.0-A2",
"@enonic-types/lib-schema": "^7.15.0-A2",
"html-react-parser": "^5.1.19",
"prop-types": "*",
"react": "*"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:enonic/enonic-react-components.git"
},
"scripts": {
"build": "concurrently -c auto -g --timings npm:build:*",
"build:cjs": "npx tsup --format cjs",
"build:esm": "npx tsup --format esm",
"build:types": "npx tsc --declarationDir dist --emitDeclarationOnly",
"clean": "del-cli dist/ *.tgz",
"check:types": "npx tsc --noEmit",
"cov": "npx jest --coverage --no-cache",
"postbuild": "del-cli dist/types/index.cjs dist/types/index.mjs",
"prebuild": "npm run clean",
"prepack": "npm run build",
"prepublishOnly": "node setversion.cjs",
"test": "npx jest --no-cache"
},
"type": "module",
"types": "dist/index.d.ts",
"version": "0.0.0"
}