-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.59 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.59 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
{
"name": "@jahia/javascript-modules-library",
"version": "1.3.0-SNAPSHOT",
"homepage": "https://github.com/Jahia/javascript-modules/tree/main/javascript-modules-library#readme",
"bugs": {
"url": "https://github.com/Jahia/javascript-modules/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jahia/javascript-modules.git",
"directory": "javascript-modules-library"
},
"license": "MIT",
"type": "module",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && node post-build.js && yarn pack --out dist/package.tgz && publint",
"clean": "rm -rf dist",
"lint": "yarn run --top-level lint"
},
"devDependencies": {
"@0no-co/graphql.web": "^1.2.0",
"@graphql-typed-document-node/core": "^3.2.0",
"@types/react": "^19.2.7",
"devalue": "^5.6.1",
"graphql": "^16.12.0",
"i18next": "^25.7.3",
"publint": "^0.3.16",
"react-i18next": "^16.5.0",
"typescript": "^5.9.3"
},
"peerDependencies": {
"@graphql-typed-document-node/core": "^3.2.0",
"graphql": "*",
"i18next": "^25.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-i18next": "^15.4.0 || ^16.0.0"
},
"peerDependenciesMeta": {
"@graphql-typed-document-node/core": {
"optional": true
},
"graphql": {
"optional": true
},
"i18next": {
"optional": true
},
"react": {
"optional": true
},
"react-dom": {
"optional": true
},
"react-i18next": {
"optional": true
}
}
}