-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 1.82 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
{
"name": "i18n-table",
"version": "1.0.5",
"description": "A React component that helps organize and manage translations",
"keywords": [
"i18n",
"manager",
"react-component",
"table",
"translations"
],
"license": "MIT",
"type": "module",
"source": "./src/index.tsx",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"default": "./dist/index.mjs"
},
"./dist/index.css": {
"import": "./dist/index.css",
"require": "./dist/index.css"
}
},
"main": "./src/index.tsx",
"module": "./src/index.tsx",
"types": "./dist/index.d.ts",
"publishConfig": {
"main": "./dist/index.cjs",
"module": "./dist/index.mjs"
},
"scripts": {
"lint": "eslint src && tsc && stylelint ./src/**/*.css",
"build": "microbundle --jsx React.createElement --jsxFragment React.Fragment --jsxImportSource react",
"dev": "npm run build watch"
},
"peerDependencies": {
"react": ">=16 <=18",
"react-dom": ">=16 <=18"
},
"dependencies": {
"file-saver": "2.0.5",
"js-yaml": "4.1.0",
"lodash.clonedeep": "4.5.0",
"lodash.escaperegexp": "4.1.2",
"lodash.get": "4.4.2",
"lodash.set": "4.3.2",
"react-virtuoso": "4.5.1"
},
"devDependencies": {
"@types/file-saver": "2.0.5",
"@types/js-yaml": "4.0.5",
"@types/lodash.clonedeep": "4.5.7",
"@types/lodash.escaperegexp": "4.1.7",
"@types/lodash.get": "4.4.7",
"@types/lodash.set": "4.3.7",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "6.15.0",
"@typescript-eslint/parser": "6.15.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"microbundle": "0.15.1",
"stylelint": "16.0.2",
"stylelint-config-standard": "35.0.0",
"typescript": "5.3.3"
}
}