-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 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
56
57
58
{
"name": "@topcli/timedtext",
"version": "1.0.0",
"description": "Animated TTY text",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"prepublishOnly": "npm run build",
"test-only": "glob -c \"tsx --test\" \"./test/**/*.spec.ts\"",
"test": "npm run lint && npm run coverage",
"coverage": "c8 -r html npm run test-only",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/TopCli/Spinner.git"
},
"keywords": [
"CLI"
],
"files": [
"dist"
],
"author": "GENTILHOMME Thomas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TopCli/timedtext/issues"
},
"homepage": "https://github.com/TopCli/timedtext#readme",
"devDependencies": {
"@nodesecure/eslint-config": "^1.8.0",
"@types/node": "^20.9.0",
"c8": "^8.0.1",
"glob": "^10.3.10",
"kleur": "^4.1.5",
"tsup": "^7.2.0",
"tsx": "^4.1.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@topcli/wcwidth": "^1.0.1",
"ansi-regex": "^6.0.1",
"get-cursor-position": "^2.0.0"
}
}