-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.64 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.64 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": "@restspace/svelte-schema-form",
"version": "0.1.6",
"description": "JSON Schema based form generator in Svelte",
"author": "James Ellis-Jones",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/restspace/svelte-schema-form.git"
},
"keywords": [
"svelte",
"form generator",
"form builder",
"json schema"
],
"bugs": {
"url": "https://github.com/restspace/svelte-schema-form/issues"
},
"homepage": "https://github.com/restspace/svelte-schema-form#readme",
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
},
"./*": "./dist/*"
},
"files": ["dist"],
"main": "dist/index.js",
"scripts": {
"dev": "vite dev",
"build": "svelte-kit sync && svelte-package && sass dist/css:dist/css",
"convertBuildToScript": "vite -c vite-script.config.js build",
"package": "svelte-kit sync && svelte-package && sass dist/css:dist/css",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"copyout": "xcopy /s /y src\\lib ..\\svelte-schema-form-script\\svelte-schema-form\\src\\lib"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^2.0.1",
"@sveltejs/kit": "^1.16.3",
"@sveltejs/package": "^2.0.2",
"@types/lodash-es": "^4.17.6",
"sass": "^1.57.1",
"svelte": "^3.54.0",
"svelte-check": "^3.0.1",
"tslib": "^2.4.1",
"typescript": "^4.9.3",
"vite": "^4.0.0"
},
"type": "module",
"dependencies": {
"@exodus/schemasafe": "^1.0.0-rc.9",
"lodash-es": "^4.17.21"
},
"peerDependencies": {
"svelte": "^3.0.0"
}
}