-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 955 Bytes
/
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
{
"name": "bhanai",
"version": "1.0.4",
"description": "Bhanai is a simple and intuitive programming language with a Nepali touch. It leverages Node.js under the hood for execution, allowing users to create .bhn files and run them seamlessly.",
"main": "src/parser.js",
"bin": {
"bhanai": "./bin/bhanai.js"
},
"type": "module",
"scripts": {
"start": "node ./bin/bhanai.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"programming-language",
"nepali",
"bhanai",
"cli",
"interpreted-language"
],
"author": "Gaurab Chhetri",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gauravfs-14/bhanai.git"
},
"bugs": {
"url": "https://github.com/gauravfs-14/bhanai/issues"
},
"homepage": "https://github.com/gauravfs-14/bhanai#readme",
"dependencies": {
"readline": "^1.3.0"
},
"engines": {
"node": ">=14.0.0"
}
}