-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
85 lines (85 loc) · 2.24 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "flickr-sdk",
"version": "7.0.0-beta.9",
"description": "Almost certainly the best Flickr API client in the world for node and the browser",
"keywords": [
"flickr",
"api",
"sdk",
"photos",
"search"
],
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
},
"default": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"browser": {
"./dist/index.mjs": "./dist/index.js",
"./src/oauth": "./src/oauth-browser",
"./src/shims/fs-promises": "./src/shims/fs-promises-browser",
"./src/shims/querystring": "./src/shims/querystring-browser",
"./src/shims/url": "./src/shims/url-browser"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"tsc": "tsc",
"build": "npm run tsc && npm run build-cjs && npm run build-esm && npm run build-browser",
"build-cjs": "esbuild --bundle --outfile=dist/index.cjs --platform=node --format=cjs src/index.ts",
"build-esm": "esbuild --bundle --outfile=dist/index.mjs --platform=node --format=esm src/index.ts",
"build-browser": "esbuild --bundle --outfile=dist/index.js --format=esm src/index.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/flickr/flickr-sdk.git"
},
"author": [
"Jeremy Ruppel",
"Alex Seville",
"Phil Dokas"
],
"license": "MIT",
"engines": {
"node": ">= 18"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"bugs": {
"url": "https://github.com/flickr/flickr-sdk/issues"
},
"homepage": "https://github.com/flickr/flickr-sdk#readme",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/node": "^20.8.4",
"esbuild": "^0.19.4",
"esbuild-jest": "^0.5.0",
"flickr-sdk": "file:.",
"jest": "^29.7.0",
"min-qs": "^1.4.0",
"min-url": "^1.5.0",
"prettier": "^3.0.3",
"stringlist-regexp": "^1.0.2",
"typescript": "^5.2.2"
},
"dependencies": {
"@rgrove/parse-xml": "^4.1.0"
}
}