lumos-language 1.0.1 → 1.0.2

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.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +9 -1
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Lumos
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/lumos-language.svg)](https://www.npmjs.com/package/lumos-language)
4
+
3
5
  <img src="https://cdn.glitch.global/a6e15949-0cae-4ce8-a653-5883a6d0adc5/Lumos.png?v=1748865997035" />
4
6
 
5
7
  Lumos is a lightweight, beginner-friendly interpreted programming language designed for learning, experimentation, and scripting.
package/package.json CHANGED
@@ -1,11 +1,19 @@
1
1
  {
2
2
  "name": "lumos-language",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Lumos - Interactive CLI",
5
5
  "main": "index.js",
6
6
  "bin": {
7
7
  "lumos": "./index.js"
8
8
  },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://github.com/Uchida16104/Lumos.git"
12
+ },
13
+ "bugs": {
14
+ "url": "https://github.com/Uchida16104/Lumos/issues"
15
+ },
16
+ "homepage": "https://lumos-language.glitch.me",
9
17
  "author": "Hirotoshi Uchida",
10
18
  "license": "MIT",
11
19
  "type": "module"