-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
73 lines (73 loc) · 2.39 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
{
"name": "svelte-pixi",
"version": "0.1.3",
"description": "Create PixiJS apps with Svelte",
"repository": "https://github.com/mattjennings/svelte-pixi",
"author": "Matt Jennings",
"license": "MIT",
"scripts": {
"dev": "vite dev",
"build:site": "vite build",
"build": "npm run package",
"preview": "vite preview",
"package": "svelte-package",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"validate": "svelte-check --tsconfig ./tsconfig.json --threshold error --ignore \"dist\"",
"prepare": "husky install",
"release": "release-it --npm.tag=latest",
"prerelease": "release-it --preRelease=beta --npm.tag=next",
"lint": "eslint .",
"prettier": "prettier --ignore-path .eslintignore --plugin-search-dir=. . --check",
"format": "prettier --ignore-path .eslintignore --plugin-search-dir=. . --write"
},
"devDependencies": {
"@commitlint/cli": "^16.2.4",
"@commitlint/config-conventional": "^16.2.4",
"@steeze-ui/heroicons": "^1.1.1",
"@steeze-ui/svelte-icon": "^1.3.1",
"@sveltejs/adapter-vercel": "next",
"@sveltejs/kit": "next",
"@sveltejs/package": "^1.0.0-next.1",
"@tailwindcss/typography": "^0.5.2",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"autoprefixer": "^10.4.4",
"dashify": "^2.0.0",
"eslint": "^8.11.0",
"eslint-plugin-svelte3": "^3.4.1",
"fathom-client": "^3.4.1",
"husky": "^7.0.0",
"just-camel-case": "^6.0.1",
"mdsvex": "^0.10.5",
"mdsvex-sveld": "^1.0.3",
"mdsvexamples": "^0.3.0-beta.1",
"mousetrap": "^1.6.5",
"pixi.js": "^6.0.0",
"postcss": "^8.4.12",
"postcss-load-config": "^3.1.3",
"prettier": "^2.7.0",
"prism-svelte": "^0.5.0",
"prismjs": "^1.27.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^5.0.1",
"release-it": "^15.0.0",
"sveld": "^0.15.0",
"svelte": "^3.46.4",
"svelte-check": "^2.4.6",
"svelte-focus-trap": "^1.2.0",
"svelte-intersection-observer": "^0.10.0",
"svelte-preprocess": "^4.10.4",
"svelte2tsx": "^0.5.14",
"tailwindcss": "^3.0.23",
"tslib": "^2.3.1",
"typescript": "^4.7.0",
"unist-util-visit": "^4.1.0",
"vite": "^3.0.0",
"vite-plugin-sveld": "^1.0.3"
},
"peerDependencies": {
"pixi.js": "^6.0.0"
},
"type": "module"
}