-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.25 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
54
55
{
"name": "awent",
"version": "0.0.0",
"description": "An awmazing API wrapper for iENT.",
"repository": "https://github.com/LiterateInk/awENT",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsup",
"checks": "tsc && eslint ."
},
"files": [
"dist"
],
"keywords": [
"ient",
"api",
"wrapper"
],
"author": "LiterateInk <[email protected]> (https://literate.ink)",
"homepage": "https://docs.literate.ink/awent",
"bugs": {
"url": "https://github.com/LiterateInk/awENT/issues"
},
"license": "GPL-3.0-or-later",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.7.2",
"@types/bun": "^1.1.14",
"@typescript-eslint/parser": "^8.3.0",
"dotenv": "^16.4.7",
"eslint": "^9.9.1",
"terser": "^5.31.6",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
},
"dependencies": {
"@literate.ink/utilities": "1.0.0-11713907881.1",
"@scure/base": "^1.2.1"
}
}