-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
67 lines (67 loc) · 2.03 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
{
"name": "paint",
"version": "1.3.0",
"description": "Open-Source, Web Components-based remake of MS Paint using modern web capabilities.",
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "jest",
"lint": "eslint \"{src,cypress}/**/*.{js,ts}\"",
"release": "npx standard-version",
"cypress:run": "cypress run --headless --browser chrome",
"cypress:open": "cypress open",
"generate-sw": "workbox generateSW",
"generate-license-file": "generate-license-file --input package.json --output dist/3rdpartylicenses.txt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/christianliebel/paint.git"
},
"author": "Christian Liebel",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/christianliebel/paint/issues"
},
"homepage": "https://github.com/christianliebel/paint#readme",
"dependencies": {
"break-styled-lines": "^1.3.1",
"bresenham-zingl": "^0.1.1",
"browser-fs-access": "^0.35.0",
"hotkeys-js": "^3.13.9",
"lit": "^3.2.1",
"q-floodfill": "^1.3.1"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@types/jest": "^29.5.14",
"@types/wicg-file-system-access": "^2023.10.5",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"cypress": "^13.17.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"generate-license-file": "^3.6.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-mockito": "^2.6.1",
"typescript": "^5.7.2",
"vite": "^6.0.6",
"workbox-cli": "^7.3.0"
},
"lint-staged": {
"{src,cypress}/**/*.{ts,js}": [
"eslint --cache --fix",
"prettier --write"
],
"public/*.{css,html,json}": "prettier --write",
"*.md": "prettier --write"
}
}