-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.78 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 2.78 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "e621",
"version": "3.3.0",
"description": "A module for interfacing with e621.",
"packageManager": "pnpm@10.23.0",
"types": "./dist/lib/index.d.ts",
"module": "./dist/lib/index.js",
"exports": {
".": {
"types": "./dist/lib/index.d.ts",
"import": "./dist/lib/index.js"
},
"./browser": {
"types": "./dist/browser/e621.d.ts",
"import": "./dist/browser/e621.js"
},
"./generated": {
"types": "./dist/lib/generated.d.ts",
"import": "./dist/lib/generated.js"
},
"./generated/*": {
"types": "./dist/lib/generated/*.d.ts",
"import": "./dist/lib/generated/*.js"
},
"./standalone": {
"types": "./dist/lib/standalone.d.ts",
"import": "./dist/lib/standalone.js"
},
"./modules/*": {
"types": "./dist/lib/modules/*.d.ts",
"import": "./dist/lib/modules/*.js"
}
},
"sideEffects": false,
"browser": {
"./dist/lib/Debug.js": "./dist/lib/Debug.browser.js",
"./dist/lib/models/Base.js": "./dist/lib/models/Base.browser.js"
},
"scripts": {
"build": "tsx scripts/build.ts",
"prepublishOnly": "npm run build",
"lint": "eslint lib --ext .ts",
"lint:fix": "eslint lib --ext .ts --fix",
"test": "npm run build && npm run test:run",
"test:run": "node --import tsx --test --test-reporter=spec test/*.test.ts",
"docs": "tsx scripts/docs.ts",
"generate": "openapi-ts && tsx scripts/replace-types.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DonovanDMC/E621.git"
},
"keywords": [
"e621",
"e621-api",
"api",
"e926",
"e926-api",
"e6",
"e9"
],
"author": "Donovan_DMC <hewwo@yiff.rocks>",
"license": "MIT",
"bugs": {
"url": "https://github.com/DonovanDMC/E621/issues"
},
"homepage": "https://github.com/DonovanDMC/E621#readme",
"devDependencies": {
"@eslint/js": "^9.39.4",
"@hey-api/openapi-ts": "^0.97.0",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/debug": "^4.1.13",
"@types/node": "^25.9.5",
"@uwu-codes/eslint-config": "^2.0.9",
"debug": "^4.4.3",
"dotenv": "^17.4.2",
"esbuild": "^0.28.1",
"eslint": "^9.39.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-unicorn": "^59.0.1",
"eslint-plugin-unused-imports": "^4.4.1",
"glob": "^13.0.6",
"globals": "^16.5.0",
"jiti": "^2.6.1",
"openapi-types": "^12.1.3",
"persistent-debug": "^1.0.1",
"playwright": "^1.48.0",
"tsx": "^4.23.1",
"typedoc": "^0.28.19",
"typedoc-plugin-mdn-links": "^5.1.1",
"typedoc-plugin-merge-modules": "^7.0.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.66.0",
"undici-types": "^8.1.0"
},
"type": "module",
"engines": {
"node": ">=20.19.0"
},
"dependencies": {
"tslib": "^2.8.1"
}
}