-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 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
{
"name": "eris-utilities",
"version": "0.1.9",
"description": "A cool package that adds collectors, sweepers and some other things to eris!",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"module": "dist/index.mjs",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./src/*": "./dist/*",
"./dist/*": "./dist/*"
},
"scripts": {
"dev": "cd example/test && ts-node index.ts",
"build": "rimraf dist && tsc && npm run build:esm",
"build:check": "tsc --noEmit --incremental false",
"build:esm": "gen-esm-wrapper ./dist/index.js ./dist/index.mjs",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pauldb09/eris-utils.git"
},
"author": "pauldb09",
"license": "ISC",
"bugs": {
"url": "https://github.com/pauldb09/eris-utils/issues"
},
"homepage": "https://github.com/pauldb09/eris-utils#readme",
"dependencies": {
"eris": "^0.17.1",
"gen-esm-wrapper": "^1.1.3",
"husky": "^8.0.1",
"tiny-typed-emitter": "^2.1.0"
}
}