-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.04 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
{
"name": "hashtag-tamil",
"version": "1.0.5",
"description": "Hashtag Suggestions and Generator for Tamil post related Context.",
"main": "./dist/tag.js",
"scripts": {
"dev": "ts-node src/tag.ts",
"build": "tsc",
"start": "node dist/tag.js"
},
"publishConfig": {
"provenance": true
},
"bin": {
"hashtag": "bin/index.mjs"
},
"keywords": [
"hashtag",
"hashtags",
"hashtag-generator",
"hashtag-suggestions",
"context",
"hashtag-context"
],
"author": "Santhosh Veer",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sanwebinfo/hashtag-tamil"
},
"bugs": {
"url": "https://github.com/sanwebinfo/hashtag-tamil/issues"
},
"homepage": "https://github.com/sanwebinfo/hashtag-tamil",
"devDependencies": {
"@types/node": "^22.10.7",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"optionalDependencies": {
"sqlite3": "^5.1.7"
},
"files": [
"dist/**/*",
"db/hashtags.db",
"db/hashtags.json",
"bin/**/*"
]
}