-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.58 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.58 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@hexagon6/solid-kit",
"version": "0.3.3",
"repository": [
{
"type": "git",
"url": "git+https://github.com/hexagon6/solid-kit.git"
},
{
"type": "git",
"url": "git+https://gitlab.fet.li/solid/kit.git"
}
],
"scripts": {
"ci": "npm run solid & npm run test:integration; npm run solid:stop",
"dev": "vite dev",
"build": "vite build && npm run package",
"preview": "vite preview",
"package": "svelte-kit sync && svelte-package && publint",
"prepublishOnly": "npm run package",
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
"solid": "npx @solid/community-server",
"solid:stop": "lsof -i :3000 -t | xargs kill",
"test": "npm run test:integration && npm run test:unit",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"test:integration": "playwright test",
"test:unit": "vitest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
}
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"peerDependencies": {
"@sveltejs/adapter-static": "^3",
"@sveltejs/kit": "^2",
"svelte": "^5"
},
"devDependencies": {
"@playwright/test": "~1.56.0",
"@storybook/addon-docs": "^9.1.10",
"@storybook/addon-links": "^9.1.10",
"@storybook/addon-svelte-csf": "^5.0.10",
"@storybook/sveltekit": "^9.1.10",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.46.3",
"@sveltejs/package": "^2.5.4",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@types/eslint": "^9.6.1",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-storybook": "9.1.10",
"eslint-plugin-svelte": "^3.12.4",
"globals": "^16.4.0",
"mdsvex": "^0.12.6",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"publint": "^0.3.14",
"storybook": "^9.1.10",
"svelte": "^5.39.11",
"svelte-check": "^4.3.3",
"typescript": "^5.9.3",
"vite": "^7.1.9",
"vitest": "^3.2.4"
},
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"license": "LICENSE",
"dependencies": {
"@hexagon6/svelte-solid-webid-check": "1.0.0",
"@inrupt/solid-client-authn-browser": "^3.1.0",
"dompurify": "^3.2.7",
"fp-ts": "^2.16.11",
"marked": "^16.4.0",
"ramda": "^0.31.3",
"resolve-pathname": "^3.0.0"
}
}