-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.63 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
63
64
65
66
{
"name": "prntr",
"version": "2.0.18",
"description": "A tiny javascript library to help printing from the web. Print.js but modern and maintained.",
"types": "dist/prntr.cjs.d.ts",
"main": "dist/prntr.cjs.js",
"module": "dist/prntr.esm.js",
"umd:main": "dist/prntr.umd.min.js",
"repository": "https://github.com/daphnesmit/prntr",
"author": "Daphne Smit",
"contributors": [
"Daphne Smit <[email protected]>"
],
"files": [
"dist"
],
"license": "MIT",
"sideEffects": false,
"scripts": {
"dev": "vite",
"watch": "preconstruct watch",
"build:preconstruct": "preconstruct build",
"build:types": "tsc",
"build": "yarn build:preconstruct && yarn build:types",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint-fix": "eslint --fix . --ext .ts,.tsx,.js,.jsx",
"type-check": "tsc --noEmit",
"prerelease": "yarn build",
"release": "yarn changeset publish"
},
"browserslist": [
"ie 11"
],
"lint-staged": {
"**/*.(js|ts|tsx)": [
"eslint --fix"
]
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@changesets/cli": "^2.19.0",
"@frntnd/eslint": "^1.0.0",
"@preconstruct/cli": "^2.1.5",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^8.15.0",
"lint-staged": "^12.2.2",
"typescript": "^4.5.5",
"vite": "^2.7.13"
},
"keywords": [
"prntr",
"prntr",
"printing",
"printjs",
"print.js",
"print-js"
],
"dependencies": {
"bowser": "^2.11.0"
},
"preconstruct": {
"umdName": "prntr"
}
}