-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.15 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
{
"name": "temperatune",
"version": "0.2.0",
"private": true,
"scripts": {
"build": "vite build",
"fmt": "prettier --write .",
"preview": "vite preview",
"serve": "vite",
"test": "run-p test:check test:fmt test:lint",
"test:check": "tsc --noEmit",
"test:fmt": "prettier --check .",
"test:lint": "eslint --ext .js,.cjs,.mjs,.ts ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/ianprime0509/temperatune"
},
"author": {
"name": "Ian Johnson",
"email": "ian@ianjohnson.dev"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ianprime0509/temperatune/issues"
},
"homepage": "https://ianprime0509.github.io/temperatune",
"dependencies": {
"dialog-polyfill": "^0.5.6",
"lit": "^2.7.5",
"pitchy": "^4.0.7",
"temperament": "^4.0.5"
},
"devDependencies": {
"@types/dom-screen-wake-lock": "1.0.1",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"eslint": "^8.44.0",
"npm-run-all": "^4.1.5",
"prettier": "2.8.8",
"typescript": "^5.1.6",
"vite": "^4.3.9",
"vite-plugin-pwa": "^0.16.4"
}
}