-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.09 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.09 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
{
"name": "@lizardbyte/app-directory",
"version": "0.0.0",
"description": "Universal app directory for LizardByte projects",
"main": "dist/index.json",
"type": "module",
"scripts": {
"validate": "node scripts/validate.cjs",
"lint": "eslint scripts/**/*.cjs",
"lint:fix": "eslint scripts/**/*.cjs --fix",
"build": "node scripts/build-index.cjs",
"build:all": "run-s validate lint build",
"test": "run-s validate lint build",
"clean": "node scripts/clean.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LizardByte/app-directory.git"
},
"keywords": [
"apps",
"directory",
"featured-apps",
"lizardbyte"
],
"author": "LizardByte",
"license": "MIT",
"bugs": {
"url": "https://github.com/LizardByte/app-directory/issues"
},
"homepage": "https://github.com/LizardByte/app-directory#readme",
"devDependencies": {
"@eslint/js": "9.39.2",
"ajv": "8.20.0",
"ajv-formats": "3.0.1",
"eslint": "9.39.2",
"glob": "13.0.0",
"npm-run-all2": "6.2.6"
},
"engines": {
"node": ">=20.0.0"
}
}