-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
82 lines (82 loc) · 2.29 KB
/
package.json
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@sjsf/flowbite-icons",
"version": "1.5.1",
"description": "The flowbite based icons set for svelte-jsonschema-form",
"license": "MIT",
"keywords": [
"icons",
"flowbite",
"form"
],
"type": "module",
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"publishConfig": {
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/x0k/svelte-jsonschema-form.git",
"directory": "packages/flowbite-icons"
},
"bugs": "https://github.com/x0k/svelte-jsonschema-form/issues",
"homepage": "https://x0k.github.io/svelte-jsonschema-form/",
"scripts": {
"dev": "vite dev",
"build": "svelte-package && vite build && mv $(find .svelte-kit/output/client/_app/immutable/assets/ -name \"_page*.css\" | head -n 1) dist/styles.css && publint",
"preview": "vite preview",
"test": "pnpm run test:unit",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"test:integration": "playwright test",
"test:unit": "vitest"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
},
"./preset": {
"types": "./dist/preset.d.ts",
"default": "./dist/preset.js"
},
"./styles.css": "./dist/styles.css"
},
"peerDependencies": {
"@sjsf/form": "workspace:^1.5.1",
"flowbite-svelte-icons": "^2.0.0-next.1",
"svelte": "^5.0.0"
},
"devDependencies": {
"@playwright/test": "catalog:",
"@sjsf/form": "workspace:*",
"@sveltejs/adapter-static": "catalog:",
"@sveltejs/kit": "catalog:",
"@sveltejs/package": "catalog:",
"@sveltejs/vite-plugin-svelte": "catalog:",
"@types/eslint": "catalog:",
"autoprefixer": "catalog:",
"eslint": "catalog:",
"eslint-config-prettier": "catalog:",
"eslint-plugin-svelte": "catalog:",
"flowbite-svelte-icons": "^2.0.2",
"globals": "catalog:",
"postcss": "catalog:",
"prettier": "catalog:",
"prettier-plugin-svelte": "catalog:",
"svelte": "catalog:",
"svelte-check": "catalog:",
"tailwindcss": "catalog:",
"testing": "workspace:*",
"typescript-eslint": "catalog:",
"vite": "catalog:",
"vitest": "catalog:"
},
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts"
}