-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
59 lines (59 loc) · 1.61 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
{
"name": "svelte-kit-cookie-session",
"version": "4.0.0",
"description": "⚒️ Encrypted 'stateless' cookie sessions for SvelteKit",
"repository": {
"type": "git",
"url": "https://github.com/pixelmund/svelte-kit-cookie-session.git"
},
"exports": {
"./package.json": "./package.json",
"./core": "./core.js",
"./handle": "./handle.js",
".": "./index.js",
"./types": "./types.js",
"./utils": "./utils.js"
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"package": "rimraf ./.svelte-kit/types && svelte-package && cp package.json dist/package.json && cp LICENSE dist/LICENSE && cp README.md dist/README.md",
"preview": "vite preview",
"test": "playwright test",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check --plugin-search-dir=. .",
"format": "prettier --write --plugin-search-dir=. .",
"package:publish": "npm run package && cd package && npm publish"
},
"devDependencies": {
"@playwright/test": "^1.25.1",
"@sveltejs/adapter-auto": "2.1.0",
"@sveltejs/kit": "^1.22.4",
"@sveltejs/package": "^2.2.0",
"prettier": "^2.7.1",
"prettier-plugin-svelte": "^2.7.0",
"rimraf": "^3.0.2",
"svelte": "^4.1.2",
"svelte-check": "^3.4.6",
"svelte-preprocess": "^5.0.4",
"svelte2tsx": "^0.6.19",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"vite": "^4.2.1"
},
"type": "module",
"dependencies": {
"@noble/ciphers": "^0.2.0"
},
"keywords": [
"SvelteKit",
"Cookie",
"CookieSession",
"Session",
"IronSession",
"Svelte"
],
"author": "pixelmund",
"license": "MIT"
}