-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 2.7 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 2.7 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "banglascript",
"version": "4.1.0",
"description": "BanglaScript: Write JavaScript in Bangla. Full-featured transpiler with CLI, REPL, project templates, caching, and modern JavaScript support. 🇧🇩",
"main": "lib/transpile-ast.js",
"types": "lib/index.d.ts",
"files": [
"bin/",
"lib/",
"README.md",
"CHANGELOG.md"
],
"bin": {
"bjs": "bin/bjs.js",
"banglascript": "bin/bjs.js"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "bjs build examples/*.bjs -o build",
"watch": "bjs watch examples/*.bjs -o build",
"run": "bjs run examples/main.bjs",
"lint": "eslint lib/ bin/ --fix",
"format": "prettier --write '**/*.{js,json,md}'",
"prepublishOnly": "npm test",
"postinstall": "node bin/postinstall.js || true",
"prepare": "husky install",
"version": "node bin/version.js && git add -A",
"postversion": "git push && git push --tags"
},
"keywords": [
"bangla",
"bengali",
"banglascript",
"transpiler",
"compiler",
"bengali-programming",
"javascript",
"cli",
"repl",
"বাংলা",
"programming-language",
"bengali-language",
"babel",
"ast",
"es6",
"nodejs",
"web-development"
],
"author": {
"name": "Mahmud Rahman",
"email": "dev@devplus.fun",
"url": "https://github.com/mahmud-r-farhan"
},
"contributors": [
{
"name": "Mahmud Rahman",
"email": "dev@devplus.fun"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/BengalEmpire/BanglaScript/issues",
"email": "dev@devplus.fun"
},
"dependencies": {
"@babel/core": "^7.23.0",
"@babel/generator": "^7.23.0",
"@babel/parser": "^7.23.0",
"@babel/preset-env": "^7.23.2",
"babel-preset-minify": "^0.5.2",
"chokidar": "^3.5.3",
"commander": "^11.0.0",
"glob": "^11.0.3"
},
"devDependencies": {
"eslint": "^8.50.0",
"prettier": "^3.0.3",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"husky": "^8.0.0",
"lint-staged": "^15.0.0"
},
"lint-staged": {
"**/*.{js,json,md}": [
"prettier --write"
],
"lib/**/*.js": [
"eslint --fix"
]
},
"peerDependencies": {},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"arm64"
],
"repository": {
"type": "git",
"url": "git+https://github.com/BengalEmpire/BanglaScript.git"
},
"homepage": "https://bangla-script.vercel.app",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/mahmud-r-farhan"
}
}