-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.05 KB
/
Copy pathpackage.json
File metadata and controls
118 lines (118 loc) · 3.05 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
110
111
112
113
114
115
116
117
118
{
"name": "pluginject",
"version": "1.1.0",
"author": "Dart Spark",
"description": "A universal installer for audio plugins",
"main": "dist/electron/main.js",
"scripts": {
"lint": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write .",
"dev": "npm run build:electron && concurrently \"vite\" \"npm:dev:electron\"",
"dev:electron": "cross-env NODE_ENV=development electron .",
"build:app": "vite build",
"build:electron": "tsc -p tsconfig.json",
"dist": "npm run build:app && npm run build:electron && electron-builder",
"start": "electron ."
},
"keywords": [],
"build": {
"appId": "com.dartjs.pluginject",
"productName": "Pluginject",
"files": [
"dist/frontend/**/*",
"dist/electron/**/*",
"build/**/*",
"package.json"
],
"protocols": [
{
"name": "Pluginject Links",
"schemes": [
"pluginject"
]
}
],
"win": {
"target": "nsis"
},
"directories": {
"buildResources": "build"
},
"fileAssociations": [
{
"ext": "needle",
"name": "Needle Installer Script",
"description": "Plugin installer script",
"role": "editor"
}
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"perMachine": false,
"createDesktopShortcut": false,
"createStartMenuShortcut": true,
"fileAssociations": [
{
"ext": "needle",
"name": "Needle Installer Script"
}
]
},
"win": {
"target": "nsis",
"icon": "build/icons/icon.ico"
},
"mac": {
"target": "dmg",
"category": "public.app-category.utilities",
"documentTypes": [
{
"name": "Needle Installer Script",
"extensions": [
"needle"
],
"role": "Editor",
"icon": "build/icons/needle.icns"
}
]
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Utility",
"mimeTypes": [
"application/x-needle"
]
},
"license": "ISC",
"type": "module",
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@typescript-eslint/eslint-plugin": "^8.46.3",
"@typescript-eslint/parser": "^8.46.3",
"@vitejs/plugin-react": "^5.1.0",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^39.1.0",
"electron-builder": "^26.0.12",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vite": "^7.1.12"
},
"dependencies": {
"react": "^19.2.0",
"react-dom": "^19.2.0"
}
}