-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 883 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
{
"name": "dealwith",
"version": "1.3.17",
"main": "lib/esm/index.js",
"repository": "[email protected]:flagpoonage/dealwith.git",
"author": "James <[email protected]>",
"license": "MIT",
"files": [
"lib"
],
"typings": "./lib/esm/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js",
"types": "./lib/esm/index.d.ts"
}
},
"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"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.6.0",
"prettier": "^2.5.1",
"typescript": "^4.5.4"
}
}