-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.31 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
{
"name": "wordle+",
"description": "A remake of the popular game Wordle with additional modes and features.",
"version": "1.3.2",
"private": "true",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"start": "sirv public --no-clear --host",
"check": "svelte-check --tsconfig ./tsconfig.json",
"deploy": "node ./gh-pages.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/academicgit/wordle.git"
},
"keywords": [],
"author": "MikhaD",
"bugs": {
"url": "https://github.com/academicgit/wordle/issues"
},
"homepage": "https://github.com/academicgit/wordle#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"@sveltejs/adapter-static": "^1.0.0-next.38",
"@tsconfig/svelte": "^3.0.0",
"rollup": "^2.64.0",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.49.0",
"svelte": "^3.46.2",
"svelte-check": "^2.3.0",
"svelte-preprocess": "^4.10.2",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
},
"dependencies": {
"gh-pages": "^4.0.0",
"seedrandom": "^3.0.5",
"sirv-cli": "^2.0.2"
}
}