-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.33 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.33 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
55
56
57
58
59
60
61
62
63
64
{
"name": "quicksi",
"version": "1.0.3",
"main": "dist/index.js",
"scripts": {
"start": "ts-node ./src/index.ts",
"build": "tsc && pkg .",
"generate:number": "./src/randomNum.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"bin": "dist/index.js",
"pkg": {
"scripts": [
"dist/**/*.js"
],
"assets": [],
"targets": [
"node16-linux-x64",
"node16-macos-x64",
"node16-win-x64"
],
"outputPath": "build"
},
"license": "MIT",
"devDependencies": {
"@types/adm-zip": "^0.5.8",
"@types/ejs": "^2.6.0",
"@types/inquirer": "^0.0.43",
"@types/node": "^25.5.0",
"@types/node-fetch": "^2.6.13",
"@types/shelljs": "^0.8.0",
"@types/yargs": "^11.1.1",
"pkg": "^5.8.1",
"shx": "^0.3.2",
"ts-node": "^7.0.1",
"typescript": "^5.9.3",
"vitest": "^4.1.2"
},
"dependencies": {
"@types/figlet": "^1.2.0",
"adm-zip": "^0.5.16",
"colors": "^1.4.0",
"ejs": "^2.6.1",
"figlet": "^1.3.0",
"https": "^1.0.0",
"inquirer": "^6.2.0",
"node-fetch": "^2.7.0",
"os": "^0.1.2",
"posthog-node": "^5.21.2",
"rxjs": "^6.5.5",
"shelljs": "^0.8.2",
"yargs": "^12.0.1"
},
"keywords": [
"starters",
"quicksi",
"command-line",
"terminal",
"projects",
"easy-start",
"tutorials"
]
}