-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.4 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
{
"name": "picospinner",
"version": "2.0.0",
"type": "module",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"engines": {
"node": ">=18.0.0"
},
"types": "./dist/index.d.ts",
"author": "PondWader",
"description": "A lightweight, no dependency, pluggable CLI spinner library.",
"scripts": {
"build": "tsup ./src/index.ts --format cjs,esm --dts",
"format": "prettier --write src",
"test": "tsc && c8 --exclude-after-remap node --test",
"lint": "npm run lint:format && eslint src",
"lint:format": "prettier --check src",
"bench": "tsc && node ./bench/string-width.mjs"
},
"files": [
"./dist/index.js",
"./dist/index.cjs",
"./dist/index.d.ts",
"./dist/index.d.cts"
],
"keywords": [
"spinner",
"cli",
"lightweight",
"minimal"
],
"bugs": {
"url": "https://github.com/PondWader/picospinner/issues"
},
"homepage": "https://github.com/PondWader/picospinner#readme",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.6.0",
"@types/bun": "^1.1.6",
"@types/capture-console": "^1.0.5",
"@types/node": "^20.14.9",
"c8": "^10.1.2",
"capture-console": "^1.0.2",
"fast-string-truncated-width": "^1.1.0",
"prettier": "^3.3.2",
"string-width": "^7.2.0",
"tinybench": "^2.8.0",
"tsup": "^8.3.5",
"typescript": "^5.5.2",
"typescript-eslint": "^7.14.1"
}
}