-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.13 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
{
"name": "cloudflare-tutor",
"version": "1.1.1",
"description": "",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"start": "tsx src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsup src/index.ts --format cjs,esm --dts --clean"
},
"files": [
"challenge_files/",
"media/",
"node_modules/",
"progress/",
"scaffolding/",
"src/",
"tsconfig.json"
],
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/node": "^20.14.7",
"chalk": "^5.3.0",
"cross-spawn": "^7.0.3",
"figlet": "^1.7.0",
"inquirer": "^9.2.23",
"node-fetch": "^2.7.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.6",
"@types/figlet": "^1.5.8",
"@types/inquirer": "^9.0.7",
"@types/shelljs": "^0.8.15",
"cross-env": "^7.0.3",
"tsup": "^8.3.0",
"tsx": "^4.15.7"
}
}