-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
128 lines (128 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
{
"name": "@ulixee/desktop",
"version": "2.0.0-alpha.31",
"description": "This is a builder project that uses the dual package.json approach (./app contains the app package.json).",
"private": true,
"author": "Ulixee Foundation",
"main": "./main/index.js",
"type": "commonjs",
"license": "MIT",
"scripts": {
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts,.vue --fix",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "vue-tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "yarn typecheck:node && yarn typecheck:web",
"start": "yarn build && electron .",
"dev": "vite --config vite.config.ts",
"import:dbx": "cd ../platform/build && npx @ulixee/datastore build ./datastore/examples/ulixee-docs.js -o ../../desktop/resources",
"build": "yarn typecheck && yarn build:run",
"build:deps": "electron-builder install-app-deps",
"build:run": "vite build --config vite.config.ts",
"dist:unpack": "yarn build && CSC_IDENTITY_AUTO_DISCOVERY=false electron-builder --dir",
"dist:local": "PYTHON=python3.10 electron-builder",
"sync": "yarn sync:repos && yarn sync:build",
"sync:clean": "shx rm -rf node_modules && (shx rm -rf packages/*/node_modules || true) && rm yarn.lock",
"sync:build": "rm yarn.lock && yarn install --check-resolutions",
"sync:repos": "NODE_OPTIONS=\"-r ts-node/register --no-warnings\" node scripts/importMonorepo.ts",
"sync:repos:dist": "yarn sync:repos build-dist",
"unpack:asar": "npx @electron/asar extract dist/mac/Ulixee.app/Contents/Resources/app.asar dist/mac/app_unpacked"
},
"dependencies": {
"@argonprotocol/localchain": "0.0.20",
"@electron-toolkit/preload": "^3.0.0",
"@ulixee/cloud": "2.0.0-alpha.31",
"@ulixee/commons": "2.0.0-alpha.31",
"@ulixee/datastore": "2.0.0-alpha.31",
"@ulixee/datastore-core": "2.0.0-alpha.31",
"@ulixee/datastore-plugins-hero": "2.0.0-alpha.31",
"@ulixee/default-browser-emulator": "2.0.0-alpha.31",
"@ulixee/desktop-core": "2.0.0-alpha.31",
"@ulixee/desktop-interfaces": "2.0.0-alpha.31",
"@ulixee/hero-core": "2.0.0-alpha.31",
"@ulixee/hero-interfaces": "2.0.0-alpha.31",
"@ulixee/js-path": "2.0.0-alpha.31",
"@ulixee/net": "2.0.0-alpha.31",
"@ulixee/platform-specification": "2.0.0-alpha.31",
"@ulixee/platform-utils": "2.0.0-alpha.31",
"@ulixee/unblocked-agent-mitm-socket": "^2.0.0-alpha.31",
"@ulixee/unblocked-specification": "2.0.0-alpha.31",
"better-sqlite3": "^11.1.2",
"electron-log": "^5.1.7",
"electron-updater": "^6.3.4",
"moment": "^2.29.4",
"nanoid": "^3.3.6",
"ws": "^8.18.0"
},
"optionalDependencies": {
"electron-clipboard-ex": "^1.3.3"
},
"devDependencies": {
"@electron-toolkit/eslint-config": "^1.0.2",
"@electron-toolkit/eslint-config-ts": "^2.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@electron/asar": "^3.2.13",
"@electron/notarize": "^2.5.0",
"@headlessui/vue": "^1.7.17",
"@heroicons/vue": "^2.1.1",
"@rushstack/eslint-patch": "^1.10.3",
"@tailwindcss/forms": "^0.5.7",
"@types/chrome": "^0.0.260",
"@types/node": "^20.14.8",
"@types/vue-router": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@webcomponents/custom-elements": "^1.6.0",
"autoprefixer": "^10.4.17",
"binary-info": "^0.1.0",
"electron": "^32.1.0",
"electron-builder": "25.0.5",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.26.0",
"fdir": "^6.3.0",
"magic-string": "^0.30.11",
"moment": "^2.29.4",
"pinia": "^2.1.7",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.5.11",
"prismjs": "^1.29.0",
"qrcode": "^1.5.3",
"rollup": "^4.21.3",
"sass-embedded": "^1.79.1",
"shx": "^0.3.4",
"swc": "^1.0.11",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"tslib": "^2.7.0",
"typescript": "~5.6.2",
"vite": "^5.3.1",
"vite-plugin-checker": "^0.8.0",
"vite-plugin-multiple": "^0.2.0",
"vite-plugin-native": "^2.2.1",
"vite-plugin-prismjs": "^0.0.11",
"vite-plugin-static-copy": "^0.17",
"vite-svg-loader": "^5.1.0",
"vue": "^3.4.30",
"vue-json-pretty": "^2.3.0",
"vue-router": "^4.4.4",
"vue-tsc": "^2.1.6"
},
"workspaces": [
"packages/*"
],
"ts-node": {
"transpileOnly": true,
"compilerOptions": {
"composite": true
},
"swc": true
},
"resolutions": {
"@electron/notarize": "2.5.0"
},
"packageManager": "[email protected]"
}