-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.53 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.53 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
{
"name": "event-handler-loader",
"version": "4.0.0",
"description": "",
"keywords": [
"event",
"handler",
"loader",
"utility"
],
"homepage": "https://github.com/xayanide/event-handler-loader",
"bugs": {
"url": "https://github.com/xayanide/event-handler-loader/issues"
},
"repository": {
"url": "git+https://github.com/xayanide/event-handler-loader.git"
},
"funding": [
{
"type": "paypal",
"url": "https://www.paypal.com/paypalme/xayanide"
},
{
"type": "ko-fi",
"url": "https://ko-fi.com/xayanide"
},
{
"type": "buymeacoffee",
"url": "https://buymeacoffee.com/xayanide"
},
{
"type": "github",
"url": "https://github.com/sponsors/xayanide"
},
{
"type": "patreon",
"url": "https://patreon.com/xayanide"
}
],
"license": "GPL-3.0-only",
"author": {
"name": "xayanide"
},
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm run clean && npm run build:base",
"build:base": "tsc",
"build:watch": "npm run build:base -- --watch",
"clean": "rimraf dist",
"dev": "npm run build:base && npm run start",
"format:base": "cross-env NODE_OPTIONS=\"--experimental-strip-types\" prettier .",
"format:check": "npm run format:base -- --check",
"format:write": "npm run format:base -- --write",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"start": "node dist/index.js",
"test": "npm run test:base",
"test:base": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest",
"test:coverage": "npm run test:base -- --coverage",
"test:watch": "npm run test:base -- --watch"
},
"dependencies": {
"file-folder-loader": "^5.0.4"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@jest/globals": "^30.2.0",
"@semantic-release/git": "^10.0.1",
"@stylistic/eslint-plugin": "^5.5.0",
"@tsconfig/strictest": "^2.0.8",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.1",
"cross-env": "^10.1.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-erasable-syntax-only": "^0.4.0",
"globals": "^16.5.0",
"jest": "^30.2.0",
"prettier": "3.6.2",
"rimraf": "^6.1.0",
"semantic-release": "^25.0.2",
"ts-jest": "^29.4.5",
"typescript": "^5.9.3",
"typescript-eslint": "^8.47.0"
}
}