-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 910 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
{
"name": "node-pastesh",
"version": "1.0.9",
"keywords": [
"paste.sh",
"pastebin",
"pastesh"
],
"description": "A Node.js client for paste.sh",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build:cjs": "tsc --project tsconfig.commonjs.json",
"build:esm": "tsc --project tsconfig.esm.json",
"build": "npm run build:cjs && npm run build:esm",
"prepublishOnly": "npm run build"
},
"author": "Wooyoung Han <hanu@a-fin.co.kr>",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"crypto-js": "^4.2.0"
},
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"@types/node": "^14.14.41",
"typescript": "^4.2.4"
},
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts"
}
}
}