-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.48 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
{
"name": "probe-match-verifier",
"version": "1.7.0",
"title": "Probe Match Verifier",
"description": "A probe match verification tool for ColourSpace.",
"private": true,
"repository": "github:peschee/probe-match-verifier",
"type": "module",
"scripts": {
"start": "vite",
"clean": "rimraf dist coverage",
"build": "pnpm run clean && tsc && vite build",
"preview": "vite preview",
"prepreview": "pnpm run build",
"lint": "run-p lint:*",
"lint:eslint": "eslint --ext .js,.ts .",
"lint:prettier": "prettier '**/*.{js,ts,md,css}' --check",
"lint:types": "tsc --noEmit",
"format": "run-s format:*",
"format:eslint": "eslint --ext .js,.ts . --fix",
"format:prettier": "prettier '**/*.{js,ts,md,css}' --write",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest --coverage",
"preinstall": "npx -y only-allow pnpm",
"postinstall": "rimraf 'public/shoelace' && cpy --flat 'node_modules/@shoelace-style/shoelace/dist/assets/icons' 'public/shoelace/assets/icons'",
"release": "npx np --no-publish --no-cleanup --release-draft-only"
},
"keywords": [
"colourspace",
"light illusion",
"probe",
"matching",
"verification",
"spectro"
],
"author": "Peter Siska <63866+peschee@users.noreply.github.com>",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.14.9",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"c8": "^10.1.2",
"cpy-cli": "^5.0.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-lit": "^1.14.0",
"eslint-plugin-wc": "^2.1.0",
"lint-staged": "^15.2.7",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.2",
"remark-gfm": "^3.0.1",
"rimraf": "^5.0.7",
"simple-git-hooks": "^2.11.1",
"ts-lit-plugin": "^2.0.2",
"typescript": "5.1.6",
"vite": "^5.3.2",
"vite-plugin-html": "^3.2.2",
"vite-remark-html": "^1.1.1",
"vitest": "^1.6.0"
},
"dependencies": {
"@shoelace-style/shoelace": "^2.15.1",
"@vanillawc/wc-markdown": "^1.6.11",
"browser-fs-access": "^0.35.0",
"cie-colorconverter": "^3.1.0",
"fast-xml-parser": "^4.4.0",
"lit": "^3.1.4",
"normalize.css": "^8.0.1"
},
"lint-staged": {
"**/*.{js,ts,md,css}": [
"prettier --write"
],
"**/*.{js,ts}": [
"eslint --fix"
]
},
"simple-git-hooks": {
"pre-commit": "pnpx lint-staged",
"pre-push": "CI=1 pnpm run lint && pnpm test"
}
}