-
-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.17 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.17 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
{
"name": "@animotion/core",
"version": "1.4.0",
"description": "Core components for Animotion",
"author": "animotionjs",
"homepage": "https://animotion.pages.dev/",
"bugs": "https://github.com/animotionjs/animotion/issues",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/animotionjs/animotion.git"
},
"keywords": [
"svelte",
"sveltekit",
"animation",
"library"
],
"scripts": {
"dev": "vite dev",
"build": "vite build && npm run prepack",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"prepack": "svelte-kit sync && svelte-package && publint",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"test": "vitest"
},
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
},
"./theme": "./dist/styles/theme.css"
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"devDependencies": {
"@sveltejs/adapter-auto": "^7.0.1",
"@sveltejs/kit": "^2.58.0",
"@sveltejs/package": "^2.5.7",
"@types/eslint": "^9.6.1",
"@types/node": "^25.6.0",
"@vitest/browser-playwright": "^4.1.5",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.17.1",
"globals": "^17.5.0",
"playwright": "^1.59.1",
"prettier": "^3.8.3",
"prettier-plugin-svelte": "^3.5.1",
"prettier-plugin-tailwindcss": "^0.7.3",
"publint": "^0.3.18",
"svelte": "5.55.5",
"svelte-check": "^4.4.6",
"tslib": "^2.8.1",
"typescript": "^6.0.3",
"typescript-eslint": "8.59.0",
"vite": "^8.0.10",
"vitest": "^4.1.5",
"vitest-browser-svelte": "^2.1.1"
},
"dependencies": {
"@animotion/motion": "^2.0.2",
"@fontsource/atkinson-hyperlegible": "^5.2.8",
"@fontsource/monaspace-neon": "^5.2.5",
"@tailwindcss/vite": "4.2.4",
"reveal.js": "6.0.1",
"shiki": "^4.0.2",
"shiki-magic-move": "^1.3.0",
"tailwindcss": "4.2.4"
},
"peerDependencies": {
"svelte": "^5.0.0"
}
}