-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
66 lines (66 loc) · 1.84 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
{
"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.11.0",
"@lerna-lite/publish": "^3.11.0",
"@tsconfig/node22": "^22.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.7",
"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.3",
"typedoc": "^0.27.6",
"typescript": "^5.7.3",
"xo": "^0.60.0"
},
"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.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0"
}