forked from casbin/casbin-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 2.6 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
112
113
{
"name": "casbin-editor",
"version": "1.0.0",
"homepage": "https://editor.casbin.org/",
"main": "main.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "npx serve@latest out",
"lint": "next lint",
"electron": "electron .",
"dist": "yarn build && electron-builder",
"release": "npx -p semantic-release -p @semantic-release/git -p @semantic-release/changelog -p @semantic-release/exec semantic-release"
},
"build": {
"appId": "org.casbin.editor",
"directories": {
"output": "dist"
},
"files": [
"main.js",
"preload.js",
"out/**/*",
"public/**/*",
"package.json"
],
"extraResources": [
"assets"
],
"mac": {
"identity": null,
"hardenedRuntime": false
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Utility",
"maintainer": "org.casbin.editor"
},
"win": {
"target": "nsis"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"release": {
"branches": [
"master"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"assets": [
{
"path": "dist/macos/*.dmg",
"label": "macOS"
},
{
"path": "dist/windows/*.exe",
"label": "Windows"
},
{
"path": "dist/linux/*.AppImage",
"label": "Linux"
}
]
}
]
]
},
"dependencies": {
"@codemirror/lang-javascript": "^6.2.1",
"@codemirror/language": "^6.10.1",
"@codemirror/legacy-modes": "^6.3.3",
"@codemirror/lint": "^6.8.1",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.24.1",
"@lezer/highlight": "^1.2.0",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@uiw/codemirror-theme-monokai": "^4.21.22",
"@uiw/react-codemirror": "^4.21.22",
"casbin": "^5.31.0",
"clsx": "^2.1.0",
"codemirror": "^6.0.1",
"next": "14.1.0",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.17",
"electron": "^30.0.8",
"electron-builder": "^24.13.3",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"postcss": "^8",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.1",
"typescript": "^5"
},
"browser": {
"fs": false
}
}