-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.26 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.26 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
{
"name": "json-schema.hyperjump.io",
"description": "Validate JSON Schema documents online",
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test": "vitest --watch=false",
"lint": "eslint ."
},
"repository": "github:hyperjump-io/json-schema.hyperjump.io",
"license": "MIT",
"dependencies": {
"@hyperjump/browser": "*",
"@hyperjump/json-schema": "*",
"content-type": "*",
"js-yaml": "*",
"jsonc-parser": "*",
"moo": "*",
"svelte-select": "*"
},
"devDependencies": {
"@stylistic/eslint-plugin": "*",
"@sveltejs/adapter-static": "*",
"@sveltejs/kit": "*",
"@sveltejs/vite-plugin-svelte": "*",
"@types/content-type": "*",
"@types/js-yaml": "*",
"@types/moo": "*",
"eslint-import-resolver-typescript": "*",
"eslint-plugin-import": "*",
"eslint-plugin-svelte": "*",
"svelte": "*",
"svelte-check": "*",
"typescript-eslint": "*",
"undici": "*",
"vite": "*",
"vitest": "*"
}
}