-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 964 Bytes
/
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
{
"name": "lua-doc-extractor",
"version": "0.0.1",
"description": "Extracts lua documentation from C-style comments",
"main": "dist/src/index.js",
"homepage": "https://github.com/rhys-vdw/lua-doc-extractor",
"repository": "https://github.com/rhys-vdw/lua-doc-extractor.git",
"bin": {
"lua-doc-extractor": "dist/src/cli.js"
},
"scripts": {
"start": "tsx src/index.ts",
"prepare": "npm run build",
"build": "tsc --build",
"clean": "tsc --build --clean"
},
"author": "Rhys van der Waerden",
"license": "MIT",
"dependencies": {
"command-line-args": "^6.0.1",
"command-line-usage": "^7.0.3",
"lodash": "^4.17.21",
"parse-comments": "^1.0.0"
},
"devDependencies": {
"@tsconfig/node16": "^16.1.3",
"@types/command-line-args": "^5.2.3",
"@types/command-line-usage": "^5.0.4",
"@types/lodash": "^4.17.13",
"@types/node": "^22.9.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
}
}