-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.55 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
{
"name": "cli-loaders",
"version": "3.0.0",
"author": {
"name": "Christian Martinez",
"url": "http://christianbmartinez.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cbmongithub/cli-loaders.git"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@types/bun": "^1.1.14",
"@types/node": "^22.10.5",
"babel-plugin-react-compiler": "^19.0.0-beta-27714ef-20250124",
"eslint-plugin-react-compiler": "^19.0.0-beta-27714ef-20250124",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"description": "A collection of loaders for your cli apps",
"funding": {
"type": "individual",
"url": "https://buymeacoffee.com/cbmonbmac"
},
"homepage": "https://cliloaders.com",
"keywords": [
"cli",
"loaders",
"cli-loaders",
"cli-spinners",
"cli-progress-bars",
"cli-animations",
"cli-loading-indicators",
"cli-spinner",
"cli-progress-bar",
"cli-loading-indicator",
"spinners",
"progress-bars",
"animations",
"loading-indicators",
"spinner",
"progress-bar",
"loading-indicator",
"page-loaders",
"nextjs loaders"
],
"license": "MIT",
"scripts": {
"start": "node dist/index.js",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"build": "tsup src/index.ts --format cjs,esm --dts --minify",
"lint": "tsc",
"test": "bun test test/init-cli-loader.test.ts --watch"
},
"type": "module"
}