-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 2.55 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 2.55 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
{
"name": "playcode",
"productName": "PLAYCODE",
"version": "2024.9.17",
"description": "JavaScript Playground",
"license": "GNU General Public License",
"homepage": "https://github.com/playcode/playcode-desktop/",
"keywords": [
"JvasSript Online Compiler",
"JavaScript Playground",
"JavaScript Desktop",
"JavaScript Sandbox",
"Electron",
"PlayCode",
"Desktop Client",
"Developer Tools"
],
"bugs": {
"url": "https://github.com/playcode/playcode-desktop/issues/"
},
"repository": {
"type": "git",
"url": "https://github.com/playcode/playcode-desktop.git"
},
"author": {
"name": "playcode"
},
"private": true,
"type": "module",
"main": "./packages/app/dist/main/main.js",
"scripts": {
"postinstall": "install-app-deps",
"start": "yarn compile && electron ./packages/app/dist/main/main.js",
"compile": "rimraf packages/app/dist && tsc -p packages/app",
"pack": "yarn compile && electron-builder --dir",
"dist:all": "yarn compile && electron-builder -mwl",
"dist:w": "yarn compile && electron-builder -m",
"release": "yarn compile && op run --env-file=\"./.env.local\" -- electron-builder -mwl"
},
"build": {
"appId": "xyz.playcode.PLAYCODE",
"productName": "PLAYCODE",
"files": [
"packages/**/*"
],
"mac": {
"category": "public.app-category.developer-tools",
"darkModeSupport": true,
"target": {
"target": "default",
"arch": "universal"
}
},
"dmg": {
"artifactName": "${productName}-${version}-${arch}.${ext}",
"contents": [
{
"x": 410,
"y": 180,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 180,
"type": "file"
}
]
},
"win": {
"target": "nsis",
"publish": [
{
"provider": "github",
"owner": "playcode",
"repo": "playcode-desktop"
}
]
},
"linux": {
"target": [
"AppImage"
]
}
},
"devDependencies": {
"electron": "^32.1.0",
"electron-builder": "^25.0.5",
"mocha": "10.7.3",
"rimraf": "^6.0.1",
"spectron": "^19.0.0",
"xo": "^0.59.3"
},
"xo": {
"envs": [
"node",
"mocha"
],
"esnext": true,
"semicolon": false,
"space": 2
},
"packageIgnore": [
"LICENSE.md",
"README.md",
".DS_Store",
".travis.yml",
"appveyor.yml",
"test",
"dist",
"build/Screenshot.png"
],
"dependencies": {
}
}