-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.28 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
{
"name": "ume",
"version": "0.1.0",
"description": "",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./dist/index.js": "./dist/index.js",
"./dist/index.mjs": "./dist/index.mjs",
"./dist/index.d.ts": "./dist/index.d.ts"
},
"scripts": {
"test": "cd test && echo building... && tsup > NUL && echo finished! && echo. && node dist/index.js",
"dev": "tsup --watch",
"build": "tsup",
"prepublishOnly": "pnpm run build"
},
"repository": {
"type": "git",
"url": "git@github.com:paolodelfino/ume.git"
},
"bugs": {
"url": "https://github.com/paolodelfino/ume/issues"
},
"files": [
"dist"
],
"keywords": [],
"author": "Paolo Delfino <hackymail12@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/node": "^20.10.4",
"dotenv": "^16.3.1",
"fake-indexeddb": "^5.0.1",
"putesting": "^1.5.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"dependencies": {
"chai": "^5.0.0",
"discord.js": "^14.14.1",
"pastebin-api": "^7.0.0",
"pustore": "^10.0.0",
"string-comparison": "^1.3.0",
"tmdb-js-node": "^1.1.6"
}
}