-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.91 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.91 KB
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
{
"name": "@42px/custom-errors",
"version": "1.4.0",
"description": "helpful custom errors",
"main": "./dist/custom-errors.cjs.js",
"jsnext:main": "./dist/index.js",
"module": "./dist/index.js",
"umd:main": "./dist/custom-errors.umd.js",
"iife:main": "./dist/custom-errors.iife.js",
"browser": "./dist/index.js",
"exports": {
"import": "./dist/index.js",
"require": "./dist/custom-errors.cjs.js"
},
"scripts": {
"emit-dts": "dts-bundle-generator --project tsconfig.json --out-file ./dist/index.d.ts ./src/index.ts",
"build:bundle": "rollup -c rollup.config.js",
"build": "npm run emit-dts && npm run build:bundle",
"lint": "eslint \"./**/*.{js,ts,tsx}\"",
"lint:fix": "eslint \"./**/*.{js,ts,tsx}\" --fix",
"check:types": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/42-px/custom-errors"
},
"keywords": [
"errors",
"typescript"
],
"bugs": {
"url": "https://github.com/42-px/custom-errors/issues"
},
"homepage": "https://github.com/42-px/custom-errors#readme",
"author": "42px",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-transform-modules-commonjs": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"dts-bundle-generator": "^6.2.0",
"eslint": "^8.4.1",
"rollup": "^2.61.1",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.7.4"
},
"files": [
"dist"
],
"typings": "./dist"
}