-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
77 lines (77 loc) · 2.15 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
{
"name": "svelte-legos",
"version": "0.2.5",
"description": "A framework for Svelte Utilities",
"author": "Ankur Singhal",
"license": "MIT",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ankurrsinghal/svelte-legos.git"
},
"bugs": {
"url": "https://github.com/ankurrsinghal/svelte-legos/issues"
},
"homepage": "https://svelte-legos.surge.sh",
"scripts": {
"dev": "vite dev",
"build": "svelte-kit sync && svelte-package",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test:unit": "vitest",
"lint": "prettier --plugin-search-dir . --check ./src && eslint .",
"format": "prettier --plugin-search-dir . --write ./src",
"watch:docs": "node page-gen.js",
"start:dev": "concurrently --kill-others \"npm run watch:docs\" \"npm run dev\"",
"build:docs": "vite build",
"deploy:docs": "npm run build:docs && ./deploy.sh"
},
"devDependencies": {
"@sveltejs/adapter-static": "^3.0.6",
"@sveltejs/kit": "^2.7.7",
"@sveltejs/package": "^2.3.7",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@types/canvas-confetti": "^1.6.4",
"@types/prismjs": "^1.26.5",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"autoprefixer": "^10.4.20",
"chokidar": "^3.5.3",
"concurrently": "^8.2.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.46.0",
"postcss": "^8.4.24",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.7",
"svelte": "^5.0.0",
"svelte-check": "^3.4.4",
"tailwindcss": "^3.4.14",
"tslib": "^2.5.3",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vitest": "^0.32.2"
},
"type": "module",
"dependencies": {
"canvas-confetti": "^1.6.0",
"prism-svelte": "^0.5.0",
"prismjs": "^1.29.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"peerDependencies": {
"svelte": "^4.0.0 || ^5.0.0"
}
}