-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.61 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.61 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
{
"name": "@cloudcannon/gadget",
"type": "module",
"version": "0.0.0",
"description": "Inpects a list of files to create configuration for the CloudCannon CMS.",
"keywords": [
"static site generator",
"cloudcannon"
],
"homepage": "https://github.com/CloudCannon/gadget#readme",
"repository": {
"type": "git",
"url": "https://github.com/CloudCannon/gadget.git"
},
"bugs": {
"url": "https://github.com/CloudCannon/gadget/issues",
"email": "support@cloudcannon.com"
},
"exports": {
".": "./dist/index.js"
},
"main": "dist/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "node --experimental-strip-types --test",
"test:watch": "node --experimental-strip-types --test --watch",
"test:coverage": "node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=lcov.info",
"test:toolproof": "toolproof --placeholders gadget_dir=$PWD/src/ test_sites=$PWD/toolproof-tests/test-sites",
"lint": "biome check && tsc --noEmit",
"lint:fix": "biome check --fix"
},
"author": "CloudCannon <support@cloudcannon.com>",
"devDependencies": {
"@biomejs/biome": "2.4.12",
"@cloudcannon/configuration-types": "0.0.54",
"@types/he": "1.2.3",
"@types/node": "25.6.0",
"toolproof": "0.18.0",
"typescript": "6.0.2"
},
"engines": {
"node": ">=24"
},
"devEngines": {
"packageManager": {
"name": "npm"
}
},
"publishConfig": {
"access": "public"
},
"license": "ISC",
"dependencies": {
"smol-toml": "1.6.1",
"@sindresorhus/slugify": "3.0.0",
"fastest-levenshtein": "1.0.16",
"he": "1.2.0",
"yaml": "2.8.3"
}
}