forked from AkaruiDevelopment/aoi.parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.01 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
{
"devDependencies": {
"@types/node": "^18.11.18"
},
"exports" : {
"." : "./dist/index.js",
"./components" : {
"import" : "./dist/components.js",
"require" : "./dist/components.js",
"types" : "./dist/components.d.ts"
}
},
"dependencies": {
"discord.js": "^14.7.1",
"typescript": "^4.9.4"
},
"name": "@akarui/aoi.parser",
"version": "1.0.1",
"description": "A parser for Aoi.js' Message System",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "npx tsc",
"start": "node ./dist/index.js",
"publish": "npm run build && npm publish",
"test": "jest"
},
"directories": {
"dist": "./dist"
},
"repository": {
"url": "https://github.com/akaruidevelopment/aoi.parser",
"type": "git"
},
"readme": "README.md",
"keywords": [
"aoi.js",
"parser",
"discord",
"discord api"
],
"bugs": {
"url": "https://github.com/akaruidevelopment/aoi.parser/issues"
},
"license": "Apache-2.0"
}