-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.39 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
{
"name": "canny-js-api",
"version": "1.0.18",
"description": "API wrapper library for Canny",
"typings": "./lib/esm/index.d.ts",
"exports": {
".": {
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js",
"types": "./lib/esm/index.d.ts"
},
"./node": {
"import": "./lib/esm/node.js",
"require": "./lib/cjs/node.js",
"types": "./lib/esm/node.d.ts"
},
"./proxy": {
"import": "./lib/esm/proxy/index.js",
"require": "./lib/cjs/proxy/index.js",
"types": "./lib/esm/proxy/index.d.ts"
}
},
"main": "./lib/cjs/node.js",
"browser": "./lib/cjs/index.js",
"files": [
"lib",
"LICENSE",
"README.md"
],
"scripts": {
"build:esm": "tsc --project tsconfig.esm.json",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build": "npm run build:esm && npm run build:cjs",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "James Hay (https://github.com/flagpoonage)",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.3.0",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"eslint": "^8.42.0",
"prettier": "^2.8.8",
"typescript": "^5.1.3"
},
"dependencies": {
"dealwith": "^1.2.0",
"got": "^11.8.6",
"got-cjs": "^12.5.4"
}
}