-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
54 lines (54 loc) · 1.49 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
{
"name": "slaytheweb",
"version": "0.22.2",
"license": "AGPL-3.0-or-later",
"homepage": "https://slaytheweb.cards",
"repository": "https://github.com/oskarrough/slaytheweb",
"bugs": "https://github.com/oskarrough/slaytheweb/issues",
"type": "module",
"scripts": {
"dev": "astro dev",
"lint": "eslint src tests --fix",
"test": "ava",
"test:watch": "ava --watch",
"test:coverage": "c8 ava",
"build": "astro build",
"preview": "astro preview",
"docs": "rm -rf ./docs; cd src/game; docco *.js; mv docs ../../docs",
"release": "release-it"
},
"devDependencies": {
"astro": "5.0.5",
"ava": "^6.2.0",
"c8": "^10.1.3",
"docco": "^0.9.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^50.6.1",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "3.4.2",
"release-it": "^17.10.0"
},
"dependencies": {
"@astrojs/preact": "4.0.0",
"driver.js": "^1.3.1",
"gsap": "^3.12.5",
"htm": "^3.1.1",
"immer": "^10.1.1",
"preact": "^10.25.2",
"superjson": "^2.2.2",
"tone": "^15.0.4"
},
"release-it": {
"git": {
"requireCleanWorkingDir": false,
"changelog": "npx auto-changelog --hide-credit --stdout --commit-limit false --unreleased --template https://raw.githubusercontent.com/release-it/release-it/main/templates/changelog-compact.hbs"
},
"npm": {
"publish": false
},
"hooks": {
"after:bump": "npx auto-changelog -p"
}
}
}