-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.09 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.09 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
{
"name": "@ton-ai-core/devtrace",
"version": "0.2.7",
"type": "module",
"description": "Enhanced development toolkit for tracing, debugging, and monitoring JavaScript/TypeScript applications with detailed stack traces and network monitoring",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"debugging",
"tracing",
"stack-trace",
"console",
"development",
"monitoring",
"logging"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": ""
},
"bugs": {
"url": ""
},
"homepage": "",
"files": [
"dist/",
"babel-plugin-function-frames.cjs",
"babel-plugin-function-frames.d.ts",
"README.md",
"LICENSE"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./babel-plugin": "./babel-plugin-function-frames.cjs"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"lint": "eslint src/",
"prepublishOnly": "npm run clean && npm run lint && npm run build",
"publish:npm": "npm run prepublishOnly && npm version patch && npm publish --access public"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/plugin-syntax-jsx": "^7.27.1",
"@babel/plugin-syntax-typescript": "^7.27.1",
"@babel/types": "^7.28.4",
"@eslint-community/eslint-plugin-eslint-comments": "^4.5.0",
"@eslint/js": "^9.23.0",
"@ton-ai-core/eslint-plugin-suggest-members": "^1.6.2",
"@types/babel__core": "^7.20.0",
"@types/node": "^20.12.11",
"eslint": "^9.23.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^15.2.0",
"typescript": "^5.8.2",
"typescript-eslint": "^8.28.0"
},
"dependencies": {
"@ton-ai-core/devtrace": "^0.1.0",
"error-stack-parser-es": "^0.1.4",
"stacktrace-js": "^2.0.2"
},
"peerDependencies": {
"zone.js": ">=0.11.0"
},
"peerDependenciesMeta": {
"zone.js": {
"optional": true
}
}
}