-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 1.63 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
{
"name": "@woovi/apiwithlog",
"version": "2.1.5",
"dependencies": {
"chalk": "^5.4.1",
"pretty-format": "^29.7.0",
"write-file-atomic": "^6.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@sentry/node": "^8.2.1",
"@types/node": "^22.10.2",
"@types/write-file-atomic": "^4.0.3",
"esbuild": "^0.24.2",
"esbuild-register": "^3.5.0",
"isomorphic-fetch": "^3.0.0",
"rollup": "^4.18.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-polyfill-node": "^0.13.0",
"tslib": "^2.6.2",
"typescript": "^5.4.5"
},
"exports": {
".": {
"require": "./lib/index.cjs.js",
"import": "./lib/index.esm.js"
}
},
"files": [
"lib"
],
"homepage": "https://woovi.com/",
"license": "MIT",
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"peerDependencies": {
"@sentry/node": "*"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"es": "node -r esbuild-register -r node-fetch",
"prepublishOnly": "rollup -c --bundleConfigAsCjs",
"release:major": "npm version major && git push --follow-tags",
"release:minor": "npm version minor && git push --follow-tags",
"release:patch": "npm version patch && git push --follow-tags",
"ts:check": "tsc --noEmit",
"ts:dev": "tsc --noEmit --watch",
"ts:export": "tsc -p tsconfig.build.json"
},
"type": "module",
"types": "lib/index.d.ts"
}