-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 811 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 811 Bytes
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
{
"name": "printing-services",
"version": "1.4.0",
"description": "Get book dimensions for popular printing services, such as bleed, safety margin, and spine width.",
"license": "MIT-0",
"author": {
"name": "Gracious Tech",
"url": "https://gracious.tech"
},
"homepage": "https://printing-services.paper.bible",
"repository": {
"type": "git",
"url": "https://github.com/gracious-tech/printing-services"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"dependencies": {
"big.js": "^7.0.1"
},
"devDependencies": {
"@types/big.js": "^6.2.2",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
}
}