-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.41 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
{
"name": "icloud-photos-share",
"version": "1.0.1",
"description": "It make for retrieve information of share album of icloud photos that use for display on your website.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"prettier:check": "prettier -c ./src/**/*.*",
"prettier:write": "prettier -w ./src/**/*.*",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky"
},
"author": "Thiti Yamsung <[email protected]> (https://github.com/mrthiti)",
"keywords": [
"ICloud",
"ICloud Photos",
"ICloud Photos Share",
"Photos Share Album",
"Shared Albums in Photos",
"Shared Albums"
],
"repository": {
"type": "git",
"url": "https://github.com/mrthiti/icloud-photos-share.git"
},
"bugs": {
"url": "https://github.com/mrthiti/icloud-photos-share/issues"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"prettier": "3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.4.3"
}
}