mirror of
https://github.com/kou029w/_.git
synced 2025-01-31 06:18:07 +00:00
create gluon
This commit is contained in:
parent
33a3683986
commit
bf8dc82ce9
4 changed files with 31 additions and 0 deletions
1
gluon/.gitignore
vendored
Normal file
1
gluon/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
gluon_data
|
5
gluon/index.mjs
Normal file
5
gluon/index.mjs
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
import * as Gluon from "@gluon-framework/gluon";
|
||||||
|
|
||||||
|
await Gluon.open("https://gluonjs.org/", {
|
||||||
|
windowSize: [800, 500],
|
||||||
|
});
|
10
gluon/package.json
Normal file
10
gluon/package.json
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{
|
||||||
|
"name": "gluon",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"main": "index.mjs",
|
||||||
|
"author": "Kohei Watanabe <kou029w@gmail.com>",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@gluon-framework/gluon": "^0.10.0"
|
||||||
|
}
|
||||||
|
}
|
15
gluon/yarn.lock
Normal file
15
gluon/yarn.lock
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
||||||
|
# yarn lockfile v1
|
||||||
|
|
||||||
|
|
||||||
|
"@gluon-framework/gluon@^0.10.0":
|
||||||
|
version "0.10.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@gluon-framework/gluon/-/gluon-0.10.0.tgz#46a6fd56087a79c56e98510441c644a780408f3d"
|
||||||
|
integrity sha512-/2sOyh0dBhWODW6hUHiyABiJReH+A27u16a36QO+jry/J7jsKeNg2kBJNyIkKPmUWMlJY1LzJxUdDEGOWuxcDg==
|
||||||
|
dependencies:
|
||||||
|
ws "^8.11.0"
|
||||||
|
|
||||||
|
ws@^8.11.0:
|
||||||
|
version "8.11.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/ws/-/ws-8.11.0.tgz#6a0d36b8edfd9f96d8b25683db2f8d7de6e8e143"
|
||||||
|
integrity sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==
|
Loading…
Add table
Reference in a new issue