-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·45 lines (45 loc) · 1.15 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
{
"name": "e621",
"version": "2.2.6",
"description": "A module for interfacing with e621.",
"main": "build/src/index.js",
"scripts": {
"build": "rm -rf build && tsc -p tsc.json && sed -i '/__exportStar(require(\".\\/types\"), exports);/d' build/src/index.js && cp -r src/types build/src",
"prepublishOnly": "npm run build",
"dev": "npm publish --tag dev",
"test": "npm run build && npx mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DonovanDMC/E621.git"
},
"keywords": [
"e621",
"e621-api",
"api",
"e926",
"e926-api",
"e6",
"e9"
],
"author": "Donovan Daniels <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/DonovanDMC/E621/issues"
},
"homepage": "https://github.com/DonovanDMC/E621#readme",
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/debug": "^4.1.7",
"@types/mocha": "^9.1.1",
"@uwu-codes/eslint-config": "^1.0.55",
"@uwu-codes/tsconfig": "^1.0.1",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"optionalDependencies": {
"debug": "^4.3.4"
}
}