-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.4 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.4 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
{
"name": "structured-table-cli",
"version": "0.2.0",
"description": "CLI tool for installing and managing Structured Table Language (STL) renderers.",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/ameghcoder/structured-table/blob/main/LICENSE"
}
],
"author": {
"name": "Yashraj Yadav",
"url": "https://github.com/ameghcoder"
},
"keywords": [
"cli",
"structured-table",
"scaffold",
"react-component",
"table",
"ui"
],
"type": "module",
"main": "dist/cli.js",
"bin": {
"stl-cli": "./dist/cli.js"
},
"files": [
"dist"
],
"dependencies": {
"commander": "^11.0.0",
"fs-extra": "^11.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ameghcoder/structured-table",
"directory": "packages/structured-table-cli"
},
"bugs": {
"url": "https://github.com/ameghcoder/structured-table/issues"
},
"homepage": "https://github.com/ameghcoder/structured-table/tree/main/packages/structured-table-cli",
"scripts": {
"build": "tsc",
"dev": "tsc && node dist/cli.js",
"start": "node dist/cli.js"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^25.0.2",
"typescript": "^5.3.0"
}
}