-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.34 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.34 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
{
"name": "svelte-split-flap",
"version": "1.0.7",
"description": "A Svelte component library for creating realistic split-flap displays with animations and sound effects",
"author": "Sokrates.L",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/socketopp/svelte-split-flap.git"
},
"homepage": "https://github.com/socketopp/svelte-split-flap#readme",
"bugs": {
"url": "https://github.com/socketopp/svelte-split-flap/issues"
},
"scripts": {
"dev": "vite dev",
"build": "npm run build:css && npm run prepack",
"preview": "vite preview",
"build:css": "tailwindcss -i ./src/app.css -o ./src/lib/styles.css -m",
"prepare": "svelte-kit sync || echo ''",
"prepack": "svelte-kit sync && svelte-package && publint",
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
"format": "prettier --write .",
"test-dev": "npm run build && npm pack && cd test-library && npm uninstall svelte-split-flap",
"lint": "prettier --check . && eslint ."
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"sideEffects": [
"**/*.css"
],
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
},
"./styles.css": "./dist/styles.css"
},
"peerDependencies": {
"svelte": "^5.0.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.5",
"@eslint/js": "^9.22.0",
"@sveltejs/adapter-auto": "^6.0.0",
"@sveltejs/kit": "^2.22.0",
"@sveltejs/package": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^6.0.0",
"@tailwindcss/vite": "^4.0.0",
"@types/node": "^22",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-svelte": "^3.0.0",
"globals": "^16.0.0",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"publint": "^0.3.2",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"tailwindcss": "^4.1.14",
"@tailwindcss/cli": "^4.1.14",
"typescript": "^5.0.0",
"vite": "^7.0.4"
},
"keywords": [
"svelte",
"split-flap",
"flip-display",
"airport-board",
"animation",
"component",
"display",
"mechanical",
"transit"
],
"dependencies": {
"clsx": "^2.1.1",
"tailwind-merge": "^3.3.1"
}
}