-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
155 lines (155 loc) · 4.72 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "@io.lazy-cat/metaverse",
"version": "0.1.308",
"description": "The Metaverse of Clojurians",
"license": "MIT",
"author": "Ilshat Sultanov <[email protected]>",
"contributors": [
{
"name": "Ilshat Sultanov",
"email": "[email protected]",
"url": "https://github.com/just-sultanov"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/lazy-cat-io/metaverse.git"
},
"homepage": "https://github.com/lazy-cat-io/metaverse#readme",
"bugs": {
"url": "https://github.com/lazy-cat-io/metaverse/issues"
},
"keywords": [
"clojure",
"clojurescript",
"electron",
"metaverse",
"reagent",
"shadow-cljs"
],
"main": "public/runner.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"assets:icon:build": "electron-icon-builder -i public/assets/images/icon.png -o public/assets",
"assets:runner:clean": "rm -rf public/runner.js",
"assets:downloader:clean": "rm -rf public/downloader.js",
"assets:renderer:clean": "rm -rf public/js && rm -rf public/test",
"assets:clean": "rm -rf public/assets/styles/bundle.css && npm run assets:runner:clean && npm run assets:downloader:clean && npm run assets:renderer:clean",
"assets:watch": "npx cross-env TAILWIND_MODE=watch postcss src/main/css/index.css --output public/assets/styles/bundle.css --verbose --watch",
"assets:build": "npx cross-env NODE_ENV=production postcss src/main/css/index.css --output public/assets/styles/bundle.css --verbose",
"electron:clean": "rm -rf dist",
"electron:watch": "npx electron .",
"electron:build": "electron-builder build --publish never",
"electron:deploy": "electron-builder build --publish always",
"shadow:watch": "npx shadow-cljs watch runner downloader renderer test",
"shadow:build": "npx shadow-cljs release runner downloader renderer",
"test:build": "npx shadow-cljs compile ci",
"test:run": "npx karma start karma.config.js --single-run",
"clean": "npm run electron:clean && npm run assets:clean",
"repl": "concurrently --kill-others --names \"assets,shadow\" \"npm run assets:watch\" \"npm run shadow:watch\"",
"test": "npm run assets:build && npm run test:build && npm run test:run",
"build": "npm run shadow:build && npm run assets:build && npm run electron:build",
"deploy": "npm run shadow:build && npm run assets:build && npm run electron:deploy",
"outdated": "clojure -M:nop:outdated; npx ncu",
"outdated:upgrade": "clojure -M:nop:outdated:outdated/upgrade; npx ncu -u && npm i",
"setup": "npm i -g electron-builder && npm i"
},
"devDependencies": {
"asar": "^3.1.0",
"autoprefixer": "^10.4.7",
"concurrently": "^7.2.1",
"cross-env": "^7.0.3",
"cssnano": "^5.1.9",
"electron": "^19.0.1",
"electron-builder": "^23.0.3",
"electron-notarize": "^1.2.1",
"highlight.js": "11.5.1",
"karma": "^6.3.20",
"karma-chrome-launcher": "^3.1.1",
"karma-cljs-test": "^0.1.0",
"npm-check-updates": "^13.0.3",
"postcss": "^8.4.14",
"postcss-cli": "^9.1.0",
"postcss-import": "^14.1.0",
"prettier": "^2.6.2",
"shadow-cljs": "^2.19.0",
"tailwindcss": "^3.0.24"
},
"dependencies": {
"@headlessui/react": "^1.6.3",
"@heroicons/react": "^1.0.6",
"@sentry/electron": "^3.0.7",
"@sentry/node": "^6.19.7",
"@sentry/tracing": "^6.19.7",
"@supabase/supabase-js": "^1.35.3",
"electron-store": "^8.0.1",
"feed-reader": "^5.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"undici": "^5.3.0"
},
"build": {
"appId": "io.lazy-cat.metaverse",
"productName": "metaverse",
"copyright": "Copyright © 2022 lazy-cat.io",
"icon": "public/assets/icons/mac/icon.icns",
"asar": true,
"asarUnpack": "**\\*.{node,dll}",
"files": [
"public/**/*",
"!public/test/**/*"
],
"directories": {
"buildResources": "public/assets",
"output": "dist"
},
"publish": [
"github"
],
"protocols": {
"name": "metaverse",
"schemes": [
"metaverse"
]
},
"afterSign": "./build/notarize.js",
"mac": {
"category": "public.app-category.developer-tools",
"target": {
"target": "default",
"arch": [
"x64"
]
},
"type": "distribution"
},
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": [
"nsis"
]
},
"nsis": {
"oneClick": false
},
"linux": {
"target": [
"AppImage"
],
"category": "Development"
}
}
}