-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2 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
{
"name": "traceperf",
"version": "0.2.1",
"description": "High-performance function execution tracking and monitoring for Node.js",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"browser": "dist/browser.js",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/esm/index.js",
"types": "./dist/index.d.ts"
},
"./browser": {
"require": "./dist/browser.js",
"import": "./dist/esm/browser.js",
"types": "./dist/browser.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"build:esm": "tsc -p tsconfig.esm.json",
"build:browser": "tsc -p tsconfig.browser.json",
"build:all": "npm run build && npm run build:esm && npm run build:browser",
"test": "jest",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "husky install",
"prepublishOnly": "npm run build:all",
"dev": "tsc --watch"
},
"keywords": [
"performance",
"profiling",
"monitoring",
"tracking",
"execution",
"function-tracing",
"memory-tracking",
"bottleneck-detection",
"sampling",
"debug",
"optimization"
],
"author": "Shubh Wadekar",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thelastbackspace/traceperf.git"
},
"bugs": {
"url": "https://github.com/thelastbackspace/traceperf/issues"
},
"homepage": "https://github.com/thelastbackspace/traceperf#readme",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.13.10",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^10.1.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"ts-jest": "^29.2.6",
"typescript": "^5.8.2"
},
"dependencies": {
"uuid": "^11.1.0"
}
}