-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
62 lines (62 loc) · 1.54 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
54
55
56
57
58
59
60
61
62
{
"name": "show-js-error",
"description": "Show a message about a js error in any browser",
"version": "4.1.0",
"author": {
"name": "Denis Seleznev",
"email": "hcodes@yandex.ru",
"url": "https://github.com/hcodes/"
},
"type": "module",
"typings": "dist/index.d.ts",
"module": "dist/show-js-error.esm.js",
"homepage": "https://github.com/hcodes/show-js-error",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/hcodes/show-js-error.git"
},
"keywords": [
"error",
"errors",
"js error",
"debug"
],
"exports": {
"typings": "./dist/index.d.ts",
"import": "./dist/show-js-error.esm.js"
},
"engines": {
"node": ">= 14.0"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@rollup/plugin-typescript": "^12.1.0",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.6",
"del-cli": "^5.1.0",
"eslint": "^9.11.1",
"globals": "^15.9.0",
"postcss-cli": "^11.0.0",
"rollup": "^4.22.5",
"tslib": "^2.7.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.0"
},
"scripts": {
"clean": "del dist/*",
"build": "npm run clean && npm run ts && npm run css && npm run inject",
"css": "postcss --no-map src/*.css --dir dist",
"inject": "node ./tools/inject.mjs",
"ts": "rollup --config rollup.config.mjs",
"test": "eslint .",
"prepare": "npm run build"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}