-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 2.39 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "printify-sdk-js",
"version": "1.3.0",
"description": "Node.js SDK for the Printify API.",
"author": "Spencer Lepine <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/spencerlepine/printify-sdk-js#readme",
"repository": {
"type": "git",
"url": "https://github.com/spencerlepine/printify-sdk-js.git"
},
"bugs": {
"url": "https://github.com/spencerlepine/printify-sdk-js/issues"
},
"keywords": [
"printify",
"sdk",
"javascript",
"typescript",
"nodejs",
"api",
"print-on-demand",
"printify-sdk",
"printify-integration",
"printify-api",
"node-sdk"
],
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.mts",
"files": [
"dist/index.cjs.js",
"dist/index.esm.js",
"dist/index.d.mts",
"docs/API.md"
],
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js",
"types": "./dist/index.d.mts"
}
},
"scripts": {
"build": "rollup -c",
"release": "npm run test && npm run build",
"test": "jest",
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run release"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"dependencies": {
"axios": "^1.7.7",
"axios-retry": "^4.5.0"
},
"peerDependencies": {
"axios": "^1.7.7"
},
"devDependencies": {
"@jest/types": "^29.6.3",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/jest": "^29.5.14",
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.0.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "4.3.8",
"jest": "^29.7.0",
"lint-staged": "10.5.4",
"prettier": "2.8.8",
"rollup": "^2.79.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.2.3",
"tslib": "^2.6.3",
"typescript": "^5.5.3"
},
"engines": {
"node": ">= 18"
}
}