-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.96 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.96 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
{
"name": "@cloudcannon/configuration-types",
"version": "0.0.0",
"type": "module",
"description": "Contains TypeScript declarations and generates JSONSchema files for the CloudCannon configuration file.",
"author": "CloudCannon <support@cloudcannon.com>",
"license": "MIT",
"keywords": [
"static site generator",
"cloudcannon"
],
"homepage": "https://github.com/CloudCannon/configuration-types#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/CloudCannon/configuration-types.git"
},
"bugs": {
"url": "https://github.com/CloudCannon/configuration-types/issues",
"email": "support@cloudcannon.com"
},
"scripts": {
"prebuild": "rm -rf dist && mkdir -p dist",
"build": "npm run build:schemas && npm run build:combined && npm run build:docs",
"build:combined": "cp cloudcannon-config.schema.json dist/cloudcannon-config.schema.json",
"build:schemas": "tsx generate-schemas.ts",
"build:docs": "tsx docs/index.ts",
"lint": "npm run lint:tsc && npm run lint:format",
"lint:tsc": "tsc --noEmit",
"lint:format": "biome check --fix",
"lint:report": "biome lint --diagnostic-level=error --reporter=junit > lint-results.xml",
"lint:staged": "biome check --diagnostic-level=error --staged --no-errors-on-unmatched",
"site:dev": "http-server site -p 12345 -c-1",
"site:build": "cp dist/*.schema.json site/.",
"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"
},
"main": "./src/index.ts",
"types": "./src/index.ts",
"publishConfig": {
"access": "public"
},
"files": [
"src/**/*",
"dist/**/*"
],
"dependencies": {
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.4.0",
"http-server": "^14.1.1",
"js-yaml": "^4.1.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}