-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.44 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
{
"name": "lahlang",
"version": "0.3.1",
"description": "A programming language for Singaporeans, by not a Singaporean yet. Can one lah!",
"author": "Suryansh Kushwaha",
"license": "MIT",
"contributors": [
{
"name": "encryptedtouhid",
"url": "https://npmjs.com/~encryptedtouhid"
},
{
"name": "jellyfishfingers",
"url": "https://github.com/jellyfishfingers"
}
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"lahlang": "dist/cli.js"
},
"files": [
"dist",
"examples"
],
"repository": {
"type": "git",
"url": "git+https://github.com/suryanshkushwaha/lahlang.git"
},
"bugs": {
"url": "https://github.com/suryanshkushwaha/lahlang/issues"
},
"homepage": "https://github.com/suryanshkushwaha/lahlang#readme",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/suryanshkushwaha"
},
{
"type": "buymeacoffee",
"url": "https://buymeacoffee.com/suryanshkushwaha"
}
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/cli.ts",
"start": "node dist/cli.js",
"test": "vitest run",
"prepublishOnly": "npm run build"
},
"keywords": [
"lahlang",
"singlish",
"language",
"singapore"
],
"devDependencies": {
"@types/node": "^20.19.37",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
}
}