mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-17 05:58:41 -09:00
wip
This commit is contained in:
parent
de260336c3
commit
89c4a5e96d
9 changed files with 16881 additions and 2052 deletions
Binary file not shown.
10535
app/.pnp.cjs
generated
Normal file
10535
app/.pnp.cjs
generated
Normal file
File diff suppressed because one or more lines are too long
2126
app/.pnp.loader.mjs
generated
Normal file
2126
app/.pnp.loader.mjs
generated
Normal file
File diff suppressed because it is too large
Load diff
BIN
app/.yarn/install-state.gz
Normal file
BIN
app/.yarn/install-state.gz
Normal file
Binary file not shown.
|
|
@ -21,7 +21,6 @@
|
||||||
"color": "4.2.3",
|
"color": "4.2.3",
|
||||||
"default-shell": "1.0.1",
|
"default-shell": "1.0.1",
|
||||||
"electron-devtools-installer": "3.2.0",
|
"electron-devtools-installer": "3.2.0",
|
||||||
"quine-electron-drag-click": "1.0.6-d",
|
|
||||||
"electron-fetch": "1.9.1",
|
"electron-fetch": "1.9.1",
|
||||||
"electron-is-dev": "2.0.0",
|
"electron-is-dev": "2.0.0",
|
||||||
"electron-store": "8.2.0",
|
"electron-store": "8.2.0",
|
||||||
|
|
@ -34,6 +33,7 @@
|
||||||
"os-locale": "5.0.0",
|
"os-locale": "5.0.0",
|
||||||
"parse-url": "9.2.0",
|
"parse-url": "9.2.0",
|
||||||
"queue": "6.0.2",
|
"queue": "6.0.2",
|
||||||
|
"quine-electron-drag-click": "1.0.6-d",
|
||||||
"react": "18.3.1",
|
"react": "18.3.1",
|
||||||
"react-dom": "18.3.1",
|
"react-dom": "18.3.1",
|
||||||
"recast": "0.23.11",
|
"recast": "0.23.11",
|
||||||
|
|
@ -47,5 +47,10 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"node-gyp": "^10.2.0"
|
"node-gyp": "^10.2.0"
|
||||||
|
},
|
||||||
|
"dependenciesMeta": {
|
||||||
|
"node-pty@1.1.0-beta33": {
|
||||||
|
"unplugged": true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
4062
app/yarn.lock
4062
app/yarn.lock
File diff suppressed because it is too large
Load diff
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"name": "hyper",
|
"name": "hyper-root",
|
||||||
"version": "4.0.0-q-canary.8",
|
"version": "4.0.0-q-canary.8",
|
||||||
"repository": "quine-global/hyper",
|
"repository": "quine-global/hyper",
|
||||||
"engines": {
|
"engines": {
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
"test:unit": "cross-env DEBUG=ava:watcher ava",
|
"test:unit": "cross-env DEBUG=ava:watcher ava",
|
||||||
"test:unit:watch": "yarn run test:unit -- --watch",
|
"test:unit:watch": "yarn run test:unit -- --watch",
|
||||||
"test:e2e": "cross-env DEBUG=ava:watcher ava --config ava-e2e.config.js",
|
"test:e2e": "cross-env DEBUG=ava:watcher ava --config ava-e2e.config.js",
|
||||||
"postinstall": "yarn run v8-snapshot && webpack --config-name hyper-app && yarn run install-app-deps-with-retry && yarn run rebuild-node-pty && cpy --cwd=target node_modules \"../../app/\" && husky && yarn run generate-schema",
|
"postinstall": "yarn run v8-snapshot && webpack --config-name hyper-app && yarn run install-app-deps-with-retry && yarn run rebuild-node-pty && husky && yarn run generate-schema",
|
||||||
"install-app-deps-with-retry": "electron-builder install-app-deps || electron-builder install-app-deps || electron-builder install-app-deps",
|
"install-app-deps-with-retry": "electron-builder install-app-deps || electron-builder install-app-deps || electron-builder install-app-deps",
|
||||||
"rebuild-node-pty": "electron-rebuild -f -o node-pty -m target",
|
"rebuild-node-pty": "electron-rebuild -f -o node-pty -m target",
|
||||||
"dist": "yarn run build && yarn run electron-builder-with-retry",
|
"dist": "yarn run build && yarn run electron-builder-with-retry",
|
||||||
|
|
@ -175,5 +175,8 @@
|
||||||
"electron-mksnapshot@34.5.1": {
|
"electron-mksnapshot@34.5.1": {
|
||||||
"unplugged": true
|
"unplugged": true
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"workspaces": [
|
||||||
|
"app"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue