-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (55 loc) · 1.23 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
{
"name": "spn2",
"description": "The SPN2 JS Library provides an easy-to-use interface to interact with the Save Page Now 2 (SPN2) API, which is part of the Internet Archive's Wayback Machine service.",
"keywords": [
"spn2",
"wayback",
"waybackmachine",
"waybackmachine-api",
"waybackmachine-api-nodejs",
"savepagenow",
"savepagenow-api",
"savepagenow-api-nodejs",
"save-page-now",
"save-page-now-api",
"save-page-now-api-nodejs",
"nodejs",
"ts"
],
"homepage": "https://github.com/ramazansancar/spn2",
"version": "1.0.3",
"author": "ramazansancar",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/ramazansancar/spn2"
},
"funding": [
{
"url": "https://github.com/sponsors/ramazansancar"
}
],
"main": "index.ts",
"scripts": {
"start": "npx ts-node index.ts",
"test": "node test.ts"
},
"type": "module",
"files": [
"src/waybackmachine/contants.ts",
"src/waybackmachine/index.ts",
"index.ts",
"test.ts",
"README.md",
"LICENSE",
"tsconfig.json"
],
"dependencies": {
},
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@types/node": "^20.11.30"
}
}