-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 3.19 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "apache-superset-quick-init",
"version": "0.1.1",
"type": "module",
"description": "Quickly download files needed to run Apache Superset deployment in docker and preconfigure them for production",
"license": "MIT",
"scripts": {
"start": "node --env-file=.env ./apache-superset-quick-init.ts",
"scratchpad": "node --env-file=.env ./scratchpad.ts",
"test": "vitest --watch",
"format": "prettier . --write",
"coverage": "vitest run --coverage",
"test-once": "vitest --run",
"test-jsr": "tsc && jsr publish --dry-run",
"build": "./scripts/build.sh",
"doc": "./scripts/generate_docs.sh",
"docs": "./scripts/generate_docs.sh",
"watch-docs": "find src/ cli.ts index.ts errors.ts | entr -can ./scripts/generate_docs.sh"
},
"dependencies": {
"@effect/cli": "^0.51.2",
"@effect/platform": "^0.72.2",
"@effect/platform-node": "^0.68.2",
"effect": "^3.12.7",
"fetch-github-folder": "^0.1.20"
},
"devDependencies": {
"@effect/vitest": "^0.16.3",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@total-typescript/ts-reset": "^0.5.1",
"@types/node": "^22.10.10",
"@vitest/coverage-v8": "^2.1.8",
"jsr": "^0.13.3",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"rollup": "^4.32.0",
"rollup-plugin-visualizer": "^5.14.0",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/nikelborm/apache-superset-quick-init.git"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"apache-superset-quick-init": "dist/apache-superset-quick-init.js",
"asqi": "dist/apache-superset-quick-init.js"
},
"bugs": {
"url": "https://github.com/nikelborm/apache-superset-quick-init/issues",
"email": "evadev@duck.com"
},
"files": [
"dist",
"!dist/minified",
"!**/*.tsbuildinfo",
"!**/*.spec.*",
"!**/scratchpad.*",
".github/FUNDING.yml",
"template.env"
],
"homepage": "https://github.com/nikelborm/apache-superset-quick-init#readme",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./index": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./index.js": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"keywords": [
"docker",
"deployment",
"docker-compose",
"deploy",
"superset",
"apache",
"apache-superset",
"nodejs",
"javascript",
"npm",
"scraper",
"downloader",
"node",
"typescript",
"script",
"download",
"node-js"
],
"author": {
"name": "nikelborm",
"email": "evadev@duck.com",
"url": "https://github.com/nikelborm"
},
"contributors": [
{
"name": "nikelborm",
"email": "evadev@duck.com",
"url": "https://github.com/nikelborm"
}
],
"maintainers": [
{
"name": "nikelborm",
"email": "evadev@duck.com",
"url": "https://github.com/nikelborm"
}
]
}