-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
55 lines (55 loc) · 1.47 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
51
52
53
54
55
{
"name": "@kin-lang/kin",
"version": "0.3.1",
"description": "Kin Programming Language: write computer programs in Kinyarwanda.",
"main": "./dist/src/index.js",
"bin": "./dist/bin/kin.js",
"author": "MURANGWA Pacifique",
"license": "MIT",
"private": false,
"homepage": "https://github.com/kin-lang/kin#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kin-lang/kin.git"
},
"bugs": {
"url": "https://github.com/kin-lang/kin/issues"
},
"scripts": {
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"lint": "eslint \"{src,test}/**/*.ts\" --fix",
"build": "tsc",
"test": "vitest --no-watch",
"test:watch": "vitest --watch",
"test:cov": "vitest --coverage",
"bin-script": "ts-node ./bin/kin.ts"
},
"keywords": [
"kin",
"language",
"kinyarwanda",
"interpreter"
],
"devDependencies": {
"@types/node": "^22.0.0",
"@types/prompt-sync": "^4.2.3",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^2.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"@vitest/eslint-plugin": "^1.0.1",
"husky": "^9.0.10",
"prettier": "^3.2.4",
"typescript": "^5.3.3",
"vitest": "^2.0.0",
"ts-node": "^10.9.2"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.0.0",
"moment": "^2.30.1",
"prompt-sync": "^4.2.0"
}
}