-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.53 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "num2talk",
"version": "1.1.8",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"build": "tsc & tsc-alias",
"start": "node dist/index.js",
"dev": "ts-node-dev -r tsconfig-paths/register ./src/index.ts",
"format": "prettier --write \"src/**/*.(js|ts)\"",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --fix --ext .js,.ts",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^22.7.5",
"ts-node-dev": "^2.0.0",
"tsc": "^2.0.4",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.6.2"
},
"engines": {
"node": "20.x"
},
"keywords": [
"num2talk",
"numbertotext",
"numbertotalk",
"language",
"multilanguage",
"numberconversion",
"textconversion"
],
"description": "Convert numbers to text in multiple languages including English, Bengali, Hindi, Arabic, and more.",
"author": {
"name": "Zobaidul Kazi",
"url": "https://zobkazi.github.io"
},
"maintainers": [
{
"name": "Zobaidul Kazi",
"email": "zobkazi@yahoo.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/zobkazi/num2talk"
},
"homepage": "https://num2talk.vercel.app",
"bugs": {
"url": "https://github.com/zobkazi/num2talk/issues"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"directories": {
"lib": "dist"
}
}