-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.73 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
{
"name": "app-store-client",
"description": "A TypeScript client for the Apple App Store API",
"version": "1.0.4",
"license": "MIT",
"author": "Shu",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/ngo275/app-store-client.git"
},
"keywords": [
"app",
"apple",
"store",
"itunes",
"appstore",
"app store",
"app store client",
"typescript"
],
"bugs": {
"url": "https://github.com/ngo275/app-store-client/issues"
},
"homepage": "https://github.com/ngo275/app-store-client#readme",
"scripts": {
"lint": "eslint ./src/**/*.ts",
"build": "rollup -c --bundleConfigAsCjs",
"start": "node dist/index.js",
"test": "jest",
"prepare": "husky",
"prepublishOnly": "yarn build"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"files": [
"dist"
],
"devDependencies": {
"@eslint/js": "^9.12.0",
"@rollup/plugin-typescript": "^12.1.1",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.13",
"@types/lodash": "^4.17.11",
"@types/memoizee": "^0.4.11",
"@types/xml2js": "^0.4.14",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rollup": "^4.24.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^29.2.5",
"tslib": "^2.8.0",
"typescript": "^5.6.3"
},
"dependencies": {
"@types/eslint__js": "^8.42.3",
"axios": "^1.7.7",
"cheerio": "^1.0.0",
"memoizee": "^0.4.17",
"typescript-eslint": "^8.10.0",
"xml2js": "^0.6.2"
}
}