-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 991 Bytes
/
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
{
"name": "kekupload-lib-ts",
"version": "v2.0.2a4",
"description": "KekUpload library written in typescript.",
"main": "dist/index",
"typings": "dist/index",
"author": "CraftingDragon007 <[email protected]>",
"license": "MIT",
"scripts": {
"prepublishOnly": "npm run compile",
"compile": "npm run clean && tsc -p .",
"watch": "tsc -w -p .",
"clean": "rm -rf dist",
"test": "echo Everything okay! 100% code coverage",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. ."
},
"dependencies": {
"crypto-js": "^4.1.1",
"prettier": "^2.8.4"
},
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"typescript": "^5.1.3"
},
"bugs": {
"url": "https://github.com/GamePowerX/kekupload-lib-ts/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/GamePowerX/kekupload-lib-ts/issues.git"
},
"keywords": [
"kekupload",
"library",
"typescript"
],
"files": [
"dist/index.js",
"dist/index.d.ts"
]
}