-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
113 lines (113 loc) · 2.72 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
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
103
104
105
106
107
108
109
110
111
112
113
{
"name": "appmap-node",
"version": "2.24.3",
"description": "AppMap agent for Node.js",
"keywords": [
"AppMap",
"node.js",
"agent"
],
"homepage": "https://github.com/getappmap/appmap-node",
"bugs": "https://github.com/getappmap/appmap-node/issues",
"license": "SEE LICENSE IN LICENSE",
"author": "Rafał Rzepecki <[email protected]>",
"files": [
"/dist"
],
"main": "./dist/bin.js",
"loader": "./dist/webpack.js",
"bin": "bin/appmap-node.js",
"exports": {
".": {
"require": {
"default": "./dist/facade.js",
"types": [
"./dist/facade.d.ts"
]
},
"import": {
"default": "./dist/facade.js",
"types": [
"./dist/facade.d.ts"
]
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/getappmap/appmap-node.git"
},
"packageManager": "[email protected]",
"type": "commonjs",
"engines": {
"node": ">=18"
},
"scripts": {
"prepack": "tsc -p tsconfig.build.json",
"lint": "eslint src test",
"test": "jest",
"watch": "tsc --watch -p tsconfig.build.json"
},
"devDependencies": {
"@jest/types": "^29.6.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@swc/core": "^1.3.78",
"@swc/jest": "^0.2.29",
"@tsconfig/node18": "^18.2.2",
"@types/caller": "^1.0.0",
"@types/convert-source-map": "^2.0.1",
"@types/jest": "^29.5.4",
"@types/mysql": "^2.15.24",
"@types/node": "^20.5.0",
"@types/pg": "^8.10.9",
"@types/ps-tree": "^1.1.6",
"@types/sqlite3": "^3.1.11",
"@types/tmp": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"@typescript-eslint/utils": "^6.4.0",
"caller": "^1.1.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"fast-glob": "^3.3.1",
"jest": "^29.6.2",
"mongodb": "^6.3.0",
"next": "^14.0.4",
"prettier": "^3.0.2",
"react": "^18",
"react-dom": "^18",
"semantic-release": "^22.0.5",
"tmp": "^0.2.1",
"ts-node": "^10.9.1",
"type-fest": "^4.3.2",
"typescript": "^5.1.6"
},
"dependencies": {
"@types/stack-utils": "^2.0.3",
"acorn-walk": "^8.2.0",
"astring": "^1.9.0",
"chalk": "<5",
"json5": "^2.2.3",
"meriyah": "^5.0.0",
"source-map-js": "^1.0.2",
"stack-utils": "^2.0.6",
"yaml": "^2.3.4"
},
"workspaces": [
"test/httpClient",
"test/httpServer",
"test/jest",
"test/mocha",
"test/vitest",
"test/mysql",
"test/postgres",
"test/sqlite",
"test/next",
"test/typescript-esm",
"test/prisma",
"test/libraryCalls",
"test/sourceMapPath"
]
}