This repository has been archived by the owner on Nov 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.09 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
{
"name": "@whizzes/exo",
"version": "0.0.6",
"scripts": {
"build": "vite build && npm run package && npm run css:build",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"css:build": "tailwindcss build -i ./src/app.css -o ./dist/styles.css",
"dev": "vite dev",
"format": "rome format --write ./src && rome check --apply ./src",
"format:unsafe": "rome format --write ./src && rome check --apply-unsafe ./src",
"lint": "rome format ./src && rome check ./src",
"preview": "vite preview",
"package": "svelte-kit sync && svelte-package && publint",
"prepublishOnly": "npm run package",
"story:build": "histoire build",
"story:dev": "histoire dev",
"story:preview": "histoire preview --port 4567",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
},
"./dist/styles.css": {
"import": "./dist/styles.css",
"require": "./dist/styles.css"
}
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"peerDependencies": {
"svelte": "^3.54.0"
},
"devDependencies": {
"@fontsource-variable/inter": "^5.0.2",
"@fontsource/fira-mono": "^5.0.2",
"@histoire/plugin-svelte": "^0.16.1",
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/kit": "^1.5.0",
"@sveltejs/package": "^2.0.0",
"@tailwindcss/forms": "^0.5.3",
"@testing-library/svelte": "^4.0.3",
"@vitest/coverage-c8": "^0.33.0",
"autoprefixer": "^10.4.14",
"histoire": "^0.16.1",
"postcss": "^8.4.24",
"publint": "^0.1.9",
"rome": "^12.1.3",
"svelte": "^3.54.0",
"svelte-check": "^3.0.1",
"tailwindcss": "^3.3.2",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"unplugin-icons": "^0.16.2",
"vite": "^4.3.0",
"vitest": "^0.34.4"
},
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"dependencies": {
"classnames": "^2.3.2"
}
}