This repository was archived by the owner on Oct 24, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.04 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.04 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
{
"name": "compasscad",
"version": "2.1.0",
"description": "very good CAD software",
"main": "entry.js",
"author": "zeankun.dev",
"license": "GPL-3.0-only",
"homepage": "https://zeankundev.github.io/CompassCAD",
"scripts": {
"start": "set NODE_ENV=development && electron .",
"start:no-sandbox": "set NODE_ENV=development && electron . --no-sandbox",
"start:wl-no-sandbox": "set NODE_ENV=development && electron . --no-sandbox --enable-features=UseOzonePlatform --ozone-platform=wayland",
"instant-build": "electron-builder && electron-builder --win",
"cleanup": "rm yarn.lock && rm -rf node_modules && rm -rf dist && yarn"
},
"private": false,
"dependencies": {
"@electron/remote": "^2.0.9",
"canvas-to-svg": "^1.0.3",
"discord-rich-presence": "^0.0.8",
"discord-rpc": "^4.0.1",
"jquery": "^3.7.1",
"mathjax-electron": "^3.0.0",
"peerjs": "^1.5.4"
},
"build": {
"appId": "dev.zeankun.compasscad",
"productName": "CompassCAD",
"copyright": "Copyright © 2024 zeankun.dev",
"icon": "build/icons/512x512.png",
"directories": {
"output": "dist"
},
"fileAssociations": [
{
"ext": "ccad",
"name": "CompassCAD drawing file",
"icon": "build/icons/ccad.ico"
}
],
"nsis": {
"perMachine": true
},
"win": {
"icon": "build/icons/icon.ico",
"target": [
"nsis"
]
},
"linux": {
"target": [
"deb",
"AppImage",
"snap",
"rpm"
],
"maintainer": "zeankun.dev",
"category": "Graphics",
"icon": "./build/icons/512x512.png"
},
"snap": {
"allowNativeWayland": true
},
"mac": {
"target": [
"zip",
"tar.gz"
],
"category": "public.app-category.graphics-design",
"icon": "./build/icons/512x512.png"
}
},
"devDependencies": {
"electron": "^35.7.2",
"electron-builder": "^26.0.12",
"electron-is-dev": "^3.0.1",
"electron-reloader": "^1.2.3",
"node-abi": "4.9.0"
}
}