-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.91 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "kodon",
"version": "0.0.1",
"scripts": {
"build-storybook": "storybook build",
"build": "vite build && npm run package",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"dev": "vite dev",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"package": "svelte-kit sync && svelte-package && publint",
"prepare": "npm run build",
"prepublishOnly": "npm run package",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"test:integration": "playwright test",
"test:unit": "vitest",
"test": "npm run test:integration && npm run test:unit"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js",
"default": "./dist/index.js"
},
"./server/loadPassage": {
"types": "./dist/server/loadPassage.d.ts",
"default": "./dist/server/loadPassage.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"peerDependencies": {
"@sveltejs/kit": "^2.5.10",
"svelte": "^4.0.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.6.1",
"@playwright/test": "^1.28.1",
"@storybook/addon-essentials": "^8.2.5",
"@storybook/addon-interactions": "^8.2.5",
"@storybook/addon-links": "^8.2.5",
"@storybook/blocks": "^8.2.5",
"@storybook/svelte": "^8.2.5",
"@storybook/sveltekit": "^8.2.5",
"@storybook/test": "^8.2.5",
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/package": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@types/eslint": "^8.56.7",
"@types/lodash": "^4.17.4",
"@types/node": "^20.13.0",
"@types/openseadragon": "^3.0.10",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-svelte": "^2.36.0",
"globals": "^15.0.0",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.1.2",
"publint": "^0.1.9",
"storybook": "^8.2.5",
"svelte": "^4.2.7",
"svelte-check": "^3.6.0",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"typescript-eslint": "^8.0.0-alpha.20",
"vite": "^5.0.11",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.2.0"
},
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"dependencies": {
"@citation-js/plugin-csl": "^0.7.14",
"@tailwindcss/typography": "^0.5.13",
"autoprefixer": "^10.4.19",
"citation-js": "^0.7.14",
"daisyui": "^4.11.1",
"front-matter": "^4.0.2",
"lodash": "^4.17.21",
"marked": "^12.0.2",
"openseadragon": "^4.1.1",
"postcss": "^8.4.38",
"smol-toml": "^1.2.1",
"tailwindcss": "^3.4.3"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}