aurasu 0.0.4 → 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -11,13 +11,6 @@ auramaxx play aurasu
11
11
 
12
12
  A hit-circle rhythm game built with AuraScript.
13
13
 
14
- Run from `examples`:
15
-
16
- ```bash
17
- cd examples
18
- npm run aurasu
19
- ```
20
-
21
14
  Controls:
22
15
 
23
16
  - Hit notes: Left Mouse Button, `Z`, `X`, or `Space`
package/bin/play.js CHANGED
@@ -7,7 +7,7 @@ import { fileURLToPath } from 'node:url';
7
7
 
8
8
  const __dirname = dirname(fileURLToPath(import.meta.url));
9
9
  const projectRoot = resolve(__dirname, '..');
10
- const localAuraCli = resolve(projectRoot, 'node_modules', 'auramaxxjs', 'src', 'cli.mjs');
10
+ const localAuraCli = resolve(projectRoot, 'node_modules', '@auraindustry', 'aurajs', 'src', 'cli.mjs');
11
11
 
12
12
  const result = existsSync(localAuraCli)
13
13
  ? spawnSync(process.execPath, [localAuraCli, 'run'], {
@@ -15,7 +15,7 @@ const result = existsSync(localAuraCli)
15
15
  stdio: 'inherit',
16
16
  env: process.env,
17
17
  })
18
- : spawnSync('npm', ['exec', '--yes', '--package', 'auramaxxjs', '--', 'aura', 'run'], {
18
+ : spawnSync('npm', ['exec', '--yes', '--package', '@auraindustry/aurajs', '--', 'aura', 'run'], {
19
19
  cwd: projectRoot,
20
20
  stdio: 'inherit',
21
21
  env: process.env,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aurasu",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "description": "A hit-circle rhythm game built with AuraJS.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -13,10 +13,10 @@
13
13
  "aura.config.json"
14
14
  ],
15
15
  "dependencies": {
16
- "auramaxxjs": "*"
16
+ "@auraindustry/aurajs": "*"
17
17
  },
18
18
  "keywords": [
19
- "auramaxxjs",
19
+ "aurajs",
20
20
  "game",
21
21
  "rhythm"
22
22
  ],