Skip to content

Commit 98eb976

Browse files
committed
chore: add JSON schema for netlify-toml
1 parent cd10892 commit 98eb976

File tree

28 files changed

+2074
-18
lines changed

28 files changed

+2074
-18
lines changed

package-lock.json

Lines changed: 339 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/config-schema/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# JSON schema for netlify.toml
2+
3+
This package includes the JSON schema file for `netlify.toml`

packages/config-schema/package.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"name": "@netlify/config-schema",
3+
"private": true,
4+
"version": "0.0.0",
5+
"description": "JSON schema for netlify.toml",
6+
"type": "module",
7+
"author": "Netlify Inc.",
8+
"scripts": {
9+
"build": "echo 'done'",
10+
"test": "vitest run",
11+
"test:dev": "vitest",
12+
"test:ci": "vitest run --reporter=default"
13+
},
14+
"keywords": [
15+
"netlify",
16+
"netlify.toml"
17+
],
18+
"homepage": "https://github.com/netlify/build",
19+
"repository": {
20+
"type": "git",
21+
"url": "https://github.com/netlify/build.git",
22+
"directory": "packages/config"
23+
},
24+
"bugs": {
25+
"url": "https://github.com/netlify/build/issues"
26+
},
27+
"license": "MIT",
28+
"devDependencies": {
29+
"ajv": "^8.12.0",
30+
"fast-glob": "^3.2.12",
31+
"toml": "^3.0.0",
32+
"vitest": "^0.29.2"
33+
}
34+
}

0 commit comments

Comments
 (0)