-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.47 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
{
"name": "svelte-zdog",
"version": "0.4.0",
"license": "MIT",
"homepage": "https://carlos-aguilar.com/svelte-zdog",
"description": "svelte components for zdog 3D renders",
"author": {
"name": "Carlos Aguilar",
"email": "hey@carlos-aguilar.com",
"url": "https://carlos-aguilar.com"
},
"repository": {
"type": "git",
"url": "https://github.com/wh0am1-dev/svelte-zdog"
},
"bugs": {
"url": "https://github.com/wh0am1-dev/svelte-zdog/issues"
},
"keywords": [
"svelte",
"components",
"zdog",
"3D",
"canvas",
"svg"
],
"type": "module",
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
}
},
"scripts": {
"dev": "vite dev --host 0.0.0.0",
"build": "vite build && npm run package",
"preview": "vite preview",
"prepare": "husky install",
"package": "svelte-kit sync && svelte-package && publint",
"prepublishOnly": "npm run package",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write ."
},
"lint-staged": {
"*.{ts,svelte}": [
"svelte-kit sync",
"svelte-check --tsconfig ./tsconfig.json",
"eslint",
"prettier -w -u"
],
"*.!(ts|svelte)": [
"prettier -w -u"
]
},
"dependencies": {
"@types/zdog": "^1.1.2",
"zdog": "^1.1.3"
},
"peerDependencies": {
"svelte": "^4.0.0"
},
"devDependencies": {
"@fontsource/fira-code": "^5.0.3",
"@fontsource/outfit": "^5.0.3",
"@sveltejs/adapter-static": "^2.0.2",
"@sveltejs/kit": "^1.20.5",
"@sveltejs/package": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-svelte": "^2.31.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"prettier-plugin-tailwindcss": "^0.3.0",
"publint": "^0.1.12",
"svelte": "^4.0.0",
"svelte-check": "^3.4.4",
"tailwindcss": "^3.3.2",
"tslib": "^2.5.3",
"typescript": "^5.1.3",
"vite": "^4.3.9"
}
}