-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 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
{
"name": "stalks.js",
"version": "1.0.0",
"description": "Library to access data from stalks.io",
"main": "./src/index.js",
"exports": {
"node": "./src/index.node.js",
"default": "./src/index.js"
},
"scripts": {
"generate-docs": "npx jsdoc -c jsdoc.json --verbose && npx cpy docs-script.js docs/build/ --rename=entry.js && npx cpy images/logo.svg docs/images",
"generate-declarations": "npx tsc && npx replace-in-file --configFile=replace-config.cjs --quiet"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cptpiepmatz/stalks.js.git"
},
"keywords": [
"js",
"stalks",
"turnips",
"animal",
"crossing",
"node",
"trade",
"api",
"library"
],
"author": "Tim 'Piepmatz' Hesse",
"license": "ISC",
"bugs": {
"url": "https://github.com/cptpiepmatz/stalks.js/issues"
},
"homepage": "https://github.com/cptpiepmatz/stalks.js#readme",
"dependencies": {
"node-fetch": "^2.6.1"
},
"type": "module",
"devDependencies": {
"better-docs": "^2.3.2",
"cpy-cli": "^3.1.1",
"dotenv": "^10.0.0",
"jsdoc": "^3.6.7",
"replace-in-file": "^6.2.0",
"typescript": "^4.3.5"
}
}