-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.41 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.41 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "devtools-pro",
"version": "1.0.0",
"description": "A comprehensive TypeScript utility library with smart features, real-time streaming, intelligent caching, and advanced utilities for modern developers.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build && npm run test",
"demo": "ts-node examples/demo.ts"
},
"keywords": [
"typescript",
"utilities",
"ai",
"machine-learning",
"real-time",
"streaming",
"caching",
"crypto",
"performance",
"async",
"validation",
"logging",
"string-utils",
"array-utils",
"object-utils",
"math-utils",
"date-utils",
"rate-limiting",
"retry-handler",
"api-helper",
"developer-tools",
"production-ready",
"enterprise",
"modern-javascript",
"functional-programming",
"algorithms",
"data-structures"
],
"author": {
"name": "Anish Paleja",
"email": "anishpaleja@example.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/anishpaleja/devtools-pro.git"
},
"bugs": {
"url": "https://github.com/anishpaleja/devtools-pro/issues"
},
"homepage": "https://github.com/anishpaleja/devtools-pro#readme",
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.5.0",
"prettier": "^3.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/*.d.ts",
"!src/**/*.test.ts"
],
"coverageDirectory": "coverage",
"coverageReporters": [
"text",
"lcov",
"html"
]
},
"publishConfig": {
"access": "public"
}
}