-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.63 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.63 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
{
"name": "@monitext/nstack",
"version": "0.1.0",
"description": "nstack is minimal utilitie to read the error stack",
"keywords": [
"stack-read",
"get-current-line",
"monitext",
"error-stack",
"stack-utils",
"stack-trace",
"stack-frame",
"stack-inspector",
"adaptive-lookup",
"js-error",
"typescript",
"logging",
"debug-tools"
],
"scripts": {
"change": "changeset",
"bump": "changeset version",
"build": "tsup src/main.ts --format cjs,esm --dts --out-dir dist && npm run copy-src && npm run bundle",
"copy-src": "cp -r src dist/src",
"bundle": "pnpm node ./bundle.js"
},
"main": "dist/cjs/main.js",
"type": "module",
"module": "dist/esm/main.mjs",
"types": "dist/main.d.ts",
"exports": {
".": {
"import": "./dist/esm/main.mjs",
"require": "./dist/cjs/main.js",
"types": "./dist/main.d.ts"
},
"./src": {
"import": "./dist/src",
"require": "./dist/src"
},
"./js": {
"import": "./dist/src-js/lib.js",
"require": "./dist/src-js/lib.js"
}
},
"files": [
"dist/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"author": "ctlinker <linkeris404@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/monitext/nstack.git"
},
"license": "Apache-2.0",
"packageManager": "pnpm@10.19.0",
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@types/bun": "^1.3.4",
"@types/deno": "^2.5.0",
"@types/node": "^24.10.2",
"esbuild": "^0.21.0",
"terser": "^5.20.0",
"tsup": "^7.0.0",
"typescript": "^5.2.2",
"vitest": "^4.0.14"
}
}