-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.72 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.72 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
{
"name": "@frdy/web-ui",
"private": false,
"version": "0.0.0-development",
"description": "Web front-end for Faraday file manager",
"source": "src/index.tsx",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"watch": "rollup -c -w --configPlugin @rollup/plugin-typescript",
"build": "paraglide-js compile --project ./project.inlang --outdir ./src/paraglide && rollup -c --configPlugin @rollup/plugin-typescript",
"test": "echo \"Error: no test specified\" && exit 0",
"commit": "git-cz",
"semantic-release": "semantic-release --branches main",
"lint": "biome check",
"paraglide": "paraglide-js compile --watch --project ./project.inlang --outdir ./src/paraglide",
"paraglide-translate": "npx @inlang/cli machine translate --project ./project.inlang"
},
"files": ["dist", "package.json", "README.md"],
"repository": {
"type": "git",
"url": "https://github.com/faraday-fm/web-ui.git"
},
"keywords": ["faraday", "web", "ui", "frontend", "file-manager"],
"author": "Mikhail Isupov",
"license": "MIT",
"bugs": {
"url": "https://github.com/faraday-fm/web-ui/issues"
},
"homepage": "https://github.com/faraday-fm/web-ui#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"react": ">=18"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@inlang/paraglide-js": "1.11.2",
"@rollup/plugin-alias": "^5.0.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@rollup/pluginutils": "^5.1.0",
"@types/parsimmon": "^1.10.8",
"@types/react": "^18.3.3",
"cz-conventional-changelog": "^3.3.0",
"git-cz": "^4.9.0",
"react": "^18.3.1",
"rollup": "^4.20.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-typescript2": "^0.36.0",
"rollup-plugin-visualizer": "^5.12.0",
"semantic-release": "^22.0.5",
"typescript": "^5.5.4"
},
"dependencies": {
"ansi-colors": "^4.1.3",
"deepmerge": "^4.3.1",
"fast-deep-equal": "^3.1.3",
"immer": "^10.0.3",
"is-promise": "^4.0.0",
"jotai": "^2.9.1",
"json5": "^2.2.3",
"list": "^2.0.19",
"parsimmon": "^1.18.1",
"valibot": "^0.37.0",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0",
"xterm-addon-unicode11": "^0.6.0",
"xterm-addon-web-links": "^0.9.0",
"xterm-addon-webgl": "^0.16.0"
}
}