-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.06 KB
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
74
75
76
77
78
79
80
81
82
{
"name": "@nasriya/zexi",
"version": "0.0.1",
"description": "A TypeScript toolkit for building interactive CLI applications with terminal interfaces, styling, and structured logging.",
"keywords": [
"zexi",
"typescript",
"javascript",
"cli",
"cli-app",
"cli-framework",
"command-line",
"command-line-interface",
"terminal",
"terminal-ui",
"tui",
"interactive-terminal",
"interactive-cli",
"console",
"logging",
"logger",
"structured-logging",
"terminal-styling",
"terminal-colors",
"developer-tools"
],
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/@types/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/@types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"scripts": {
"build": "bun run .builder/builder.ts",
"build:pending": "rm -rf dist && npm run build:esm && npm run build:cjs && postbuild",
"build:esm": "tsc --p tsconfig.esm.json",
"build:cjs": "tsc --p tsconfig.cjs.json",
"build:types": "tsc -p tsconfig.types.json",
"test": "jest --detectOpenHandles --runInBand --silent",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"upgrade": "ncu -u --dep dev,peer"
},
"maintainers": [
{
"name": "Ahmad Nasriya",
"email": "ahmad@nasriya.net",
"url": "https://www.linkedin.com/in/ahmadnasriya/"
}
],
"repository": {
"type": "github",
"url": "git+https://github.com/nasriyasoftware/Zexi.git"
},
"bugs": {
"url": "https://github.com/nasriyasoftware/Zexi/issues"
},
"homepage": "https://package.nasriya.net/Zexi",
"funding": {
"type": "individual",
"url": "https://fund.nasriya.net/"
},
"license": "NPCL-2.0",
"author": "Nasriya Software",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"jest": "^30.3.0",
"ts-jest": "^29.4.9"
},
"dependencies": {
"@nasriya/atomix": "^1.0.25"
}
}