-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.49 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
{
"name": "zolt",
"version": "1.1.0",
"description": "The CLI spinner that doesn't suck",
"main": "dist/zolt.cjs.js",
"module": "dist/zolt.mjs",
"types": "dist/zolt.d.ts",
"exports": {
".": {
"require": "./dist/zolt.cjs.js",
"import": "./dist/zolt.mjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist/* && node esbuild.config.js",
"test": "ava",
"test:coverage": "c8 ava",
"prepare": "husky",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Alcadramin/zolt.git"
},
"keywords": [
"cli",
"spinner",
"spinners",
"terminal",
"term",
"console",
"ascii",
"unicode",
"loading",
"indicator",
"progress",
"busy",
"wait",
"idle",
"zolt",
"ora"
],
"author": "Alcadramin",
"license": "MIT",
"bugs": {
"url": "https://github.com/Alcadramin/zolt/issues"
},
"homepage": "https://github.com/Alcadramin/zolt#readme",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.11.1",
"@types/node": "^22.7.4",
"ava": "^6.1.3",
"c8": "^10.1.2",
"esbuild": "^0.24.0",
"esbuild-register": "^3.6.0",
"eslint": "^9.11.1",
"globals": "^15.10.0",
"husky": "^9.1.6",
"rimraf": "^6.0.1",
"standard-version": "^9.5.0",
"typescript": "^5.6.2"
},
"ava": {
"require": [
"esbuild-register"
]
}
}