-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 900 Bytes
/
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
{
"name": "@naverpay/device-info",
"version": "1.0.18",
"description": "Device information",
"scripts": {
"build": "tsup",
"crawling": "node --experimental-modules ./src/crawling.mjs",
"release": "changeset publish"
},
"sideEffects": false,
"files": [
"./dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"author": "NaverPay Frontend team <https://github.com/NaverPayDev>",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"node-fetch": "^3.3.2",
"node-html-parser": "^6.1.12",
"tsup": "^8.1.0",
"typescript": "^5.5.2"
},
"packageManager": "pnpm@9.4.0"
}