-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.31 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
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
{
"name": "file-folder-loader",
"version": "3.0.7",
"description": "",
"keywords": [
"iteration",
"file",
"folder",
"loader",
"utility"
],
"homepage": "https://github.com/xayanide/file-folder-loader",
"bugs": {
"url": "https://github.com/xayanide/file-folder-loader/issues"
},
"repository": {
"url": "git+https://github.com/xayanide/file-folder-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"
}
},
"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\" module",
"test:coverage": "npm run test:base -- --coverage",
"test:watch": "npm run test:base -- --watch"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@semantic-release/git": "^10.0.1",
"@stylistic/eslint-plugin": "^4.2.0",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^22.13.9",
"cross-env": "^7.0.3",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-erasable-syntax-only": "^0.3.0",
"globals": "^16.0.0",
"prettier": "3.5.3",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.3",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.0"
}
}