-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.13 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "@coderosh/myriad",
"version": "0.4.1",
"description": "A esoteric programming language written in typescript supporting syntaxes based in different lingos (genz, uwu, pirate, etc)",
"bin": {
"myriad": "./bin/myriad"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "vitest run --coverage",
"prepublishOnly": "npm run build"
},
"files": [
"dist/**",
"modules/**"
],
"keywords": [
"language",
"interpreter",
"genz",
"uwu",
"nepali",
"pirate"
],
"repository": {
"type": "git",
"url": "git+https://github.com/coderosh/myriad.git"
},
"author": {
"name": "Roshan Acharya",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/coderosh/myriad/issues"
},
"homepage": "https://github.com/coderosh/myriad#readme",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.9.2",
"@types/readline-sync": "^1.4.7",
"@vitest/coverage-v8": "^0.34.6",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"dependencies": {
"ansi-colors": "^4.1.3",
"readline-sync": "^1.4.10"
}
}