-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.05 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
{
"name": "@myparcel/sdk",
"version": "4.1.1",
"description": "JavaScript SDK to connect to the MyParcel API via Node.js or browser",
"keywords": [
"myparcel",
"sdk",
"node",
"browser"
],
"repository": "github:myparcelnl/js-sdk",
"license": "MIT",
"author": "Edie Lemoine <edie@myparcel.nl>",
"type": "module",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./lib/index.cjs"
}
},
"main": "./lib/index.cjs",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "vite build",
"build:dev": "vite build --mode development",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:run": "vitest run",
"typecheck": "tsc --noEmit",
"watch": "yarn build:dev --watch"
},
"lint-staged": {
"*.{ts,js,cjs.mjs}": "eslint --fix",
"*.{json,yml,md}": "prettier --write",
"package.json": [
"sort-package-json",
"sh -c \"publint\""
]
},
"prettier": "@myparcel/prettier-config",
"dependencies": {
"@myparcel/constants": "^2.0.0",
"@myparcel/ts-utils": "^1.6.0"
},
"devDependencies": {
"@myparcel-eslint/eslint-config-esnext": "^1.2.0",
"@myparcel-eslint/eslint-config-import": "^1.2.1",
"@myparcel-eslint/eslint-config-node": "^1.2.0",
"@myparcel-eslint/eslint-config-prettier": "^1.2.0",
"@myparcel-eslint/eslint-config-prettier-typescript": "^1.2.0",
"@myparcel/semantic-release-config": "^5.0.0",
"@tsconfig/recommended": "^1.0.2",
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^2.0.0",
"@vitest/ui": "^2.0.0",
"eslint": "^8.34.0",
"eslint-plugin-sort-exports": "^0.9.0",
"husky": "^9.0.0",
"prettier": "^2.8.4",
"publint": "^0.2.0",
"sort-package-json": "^2.4.1",
"typescript": "^5.2.0",
"vite": "^5.0.0",
"vite-plugin-dts": "^3.6.0",
"vitest": "^2.0.0"
},
"volta": {
"node": "20.10.0",
"yarn": "4.3.1"
},
"publishConfig": {
"access": "public"
}
}