-
-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.79 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.79 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@congminh1254/shopee-sdk",
"version": "2.2.0",
"description": "Shopee SDK maintaining by community",
"type": "module",
"main": "./lib/sdk.js",
"exports": {
".": {
"import": "./lib/sdk.js",
"types": "./lib/sdk.d.ts"
},
"./schemas": {
"import": "./lib/schemas/index.js",
"types": "./lib/schemas/index.d.ts"
},
"./schemas/*": {
"import": "./lib/schemas/*.js",
"types": "./lib/schemas/*.d.ts"
},
"./managers": {
"import": "./lib/managers/index.js",
"types": "./lib/managers/index.d.ts"
},
"./managers/*": {
"import": "./lib/managers/*.js",
"types": "./lib/managers/*.d.ts"
},
"./storage": {
"import": "./lib/storage/index.js",
"types": "./lib/storage/index.d.ts"
},
"./storage/*": {
"import": "./lib/storage/*.js",
"types": "./lib/storage/*.d.ts"
}
},
"files": [
"lib/**/*"
],
"scripts": {
"prebuild": "node scripts/generate-version.js",
"build": "npm run prebuild && node --loader ts-node/esm node_modules/.bin/tsc",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:sandbox": "dotenv -- tsx src/__tests__/utils/init.ts",
"auth:sandbox": "dotenv -- tsx src/__tests__/utils/init.ts --auth-only",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\"",
"fetch-schemas": "tsx schemas/fetch.ts",
"audit:specs": "tsx scripts/audit-specs.ts",
"generate": "tsx src/generator/index.ts",
"docs:build": "typedoc && cp llms.txt docs/api/llms.txt && touch docs/api/.nojekyll",
"prepare": "husky"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/congminh1254/shopee-sdk.git"
},
"keywords": [
"shopee",
"sdks",
"nodejs"
],
"author": "Minh Nguyen Cong",
"license": "MIT",
"bugs": {
"url": "https://github.com/congminh1254/shopee-sdk/issues"
},
"homepage": "https://github.com/congminh1254/shopee-sdk#readme",
"devDependencies": {
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@eslint/js": "^10.0.1",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@typescript-eslint/parser": "^8.59.0",
"dotenv": "^17.4.2",
"dotenv-cli": "^11.0.0",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.5.0",
"husky": "^9.1.7",
"jest": "^30.4.2",
"playwright": "^1.60.0",
"prettier": "^3.9.6",
"ts-jest": "^29.4.10",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typedoc": "^0.28.19",
"typescript": "^6.0.3"
},
"dependencies": {
"node-fetch": "^3.3.2"
}
}