-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
67 lines (67 loc) · 1.89 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
{
"name": "@bizon/selling-partner-api-sdk",
"private": true,
"description": "A modularized SDK library for Amazon Selling Partner API (fully typed in TypeScript)",
"repository": "[email protected]:bizon/selling-partner-api-sdk.git",
"author": "Bertrand Marron <[email protected]>",
"license": "MIT",
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"check:ts": "turbo run check:ts",
"test": "turbo run test",
"codegen": "tsx --tsconfig codegen/tsconfig.json codegen/generate.ts",
"predocs": "turbo run build --filter=@sp-api-sdk/common",
"docs": "typedoc"
},
"devDependencies": {
"@jest/types": "^29.6.3",
"@lerna-lite/cli": "^3.10.0",
"@lerna-lite/publish": "^3.10.0",
"@tsconfig/node20": "^20.1.4",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.6",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint-config-xo-bizon": "^3.0.3",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"turbo": "^2.3.0",
"typedoc": "^0.26.11",
"typedoc-plugin-missing-exports": "^3.0.2",
"typescript": "^5.6.3",
"xo": "^0.59.3"
},
"xo": {
"extends": "xo-bizon",
"settings": {
"import/internal-regex": "^@sp-api-sdk/"
},
"parserOptions": {
"project": "./tsconfig.xo.json"
},
"semicolon": false,
"space": 2,
"ignores": [
"clients/*/src/api-model/**"
],
"overrides": [
{
"files": [
"packages/**",
"clients/**"
],
"rules": {
"unicorn/prevent-abbreviations": "off"
}
}
],
"prettier": true
},
"prettier": {
"printWidth": 100
},
"packageManager": "[email protected]+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee"
}