-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.17 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3.17 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@tginternal/editor",
"version": "1.19.0",
"type": "module",
"main": "./dist/tolgee-editor.js",
"types": "./lib/tolgee-editor.d.ts",
"exports": {
"require": "./dist/tolgee-editor.cjs",
"module": "./dist/tolgee-editor.js",
"types": "./lib/tolgee-editor.d.ts"
},
"scripts": {
"dev": "vite",
"build": "tsc -p tsconfig.lib.json && vite build",
"build:watch": "concurrently \"tsc -p tsconfig.lib.json -w\" \"vite build -w\"",
"eslint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"tsc": "tsc --noEmit",
"grammar": "lezer-generator ./src/parser/lezer/tolgee.grammar -o ./src/parser/lezer/tolgeeParser.ts",
"preview": "vite preview",
"test": "jest",
"release": "semantic-release",
"link": "node -r dotenv/config ./scripts/linkToTolgee.js"
},
"files": [
"lib/**/*",
"dist/**/*",
"src/**/*"
],
"peerDependencies": {
"@codemirror/lint": "^6.4.2",
"@codemirror/state": "^6.4.0",
"@codemirror/view": "^6.23.1"
},
"devDependencies": {
"@codemirror/lang-javascript": "^6.2.1",
"@codemirror/lint": "^6.4.2",
"@codemirror/state": "^6.4.0",
"@codemirror/view": "^6.23.1",
"@emotion/styled": "^11.11.0",
"@formatjs/icu-messageformat-parser": "^2.7.5",
"@lezer/generator": "^1.6.0",
"@lezer/lezer": "^1.1.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^14.1.0",
"@tolgee/core": "^5.19.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.0",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@uiw/react-codemirror": "^4.21.21",
"@vitejs/plugin-react": "^4.2.1",
"concurrently": "^8.2.2",
"dotenv": "^16.4.1",
"eslint": "^8.55.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"intl-messageformat": "^10.5.8",
"jest": "^29.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"semantic-release": "^25.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vite-plugin-externalize-deps": "^0.8.0"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"package-lock.json",
"CHANGELOG.md"
]
}
]
],
"branches": [
{
"name": "main",
"channel": "latest",
"prerelease": false
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/tolgee/editor"
},
"publishConfig": {
"access": "public"
},
"//dependencies": "entities pinned to 6.x — latest dual CJS/ESM release; 7+ are ESM-only and break the CommonJS jest tests and the .cjs build",
"dependencies": {
"bidi-js": "^1.0.3",
"entities": "^6.0.1"
}
}