-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.88 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.88 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "sendle-node",
"sideEffects": false,
"description": "Node.js library for the Sendle API",
"version": "3.0.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/index.mjs",
"repository": "https://github.com/Gomah/sendle-node",
"homepage": "https://sendle-node.vercel.app",
"publishConfig": {
"access": "public"
},
"workspaces": [
"docs"
],
"keywords": [
"sendle",
"sendle-node",
"api",
"library",
"client"
],
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"prettier": {
"printWidth": 100,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"scripts": {
"start": "tsup src/index.ts --format esm,cjs --watch --dts",
"build": "tsup src/index.ts --format esm,cjs --dts",
"test:watch": "vitest --ui",
"test": "vitest run",
"lint": "eslint --ext .ts ./src ./test",
"prepare": "husky install",
"prepublishOnly": "yarn build",
"release": "yarn test && standard-version && git push --follow-tags && npm publish"
},
"author": "Gomah",
"devDependencies": {
"@commitlint/cli": "17.5.0",
"@commitlint/config-conventional": "17.4.4",
"@swc/core": "1.3.42",
"@tsconfig/recommended": "1.0.2",
"@types/node": "18.15.9",
"@typescript-eslint/eslint-plugin": "5.56.0",
"@typescript-eslint/parser": "5.56.0",
"@vitest/coverage-c8": "0.29.7",
"@vitest/ui": "0.29.7",
"c8": "7.13.0",
"dotenv": "16.0.3",
"eslint": "8.36.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"prettier": "2.8.7",
"standard-version": "9.5.0",
"tslib": "2.5.0",
"tsup": "6.7.0",
"typescript": "5.0.2",
"vitest": "0.29.7"
},
"dependencies": {
"got": "11.8.6",
"hasha": "5.2.2",
"hyperid": "3.1.1"
},
"packageManager": "yarn@3.4.1"
}