-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1.17 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
{
"name": "tinycanvas",
"version": "1.0.0",
"description": "A little tiny canvas demos",
"main": "src/main-application.js",
"scripts": {
"start-https": "vite dev --https --host",
"start": "vite dev --host",
"build": "rimraf docs && vite build && workbox generateSW workbox-config.js",
"preview": "vite preview",
"regen-package-lock": "rimraf package-lock.json && rimraf node_modules && npm install",
"postinstall": "mkdir -p ./public/wasm && cp -p ./node_modules/pathkit-wasm/bin/pathkit.wasm ./public/wasm/"
},
"dependencies": {
"@material/mwc-dialog": "^0.27.0",
"@shoelace-style/shoelace": "^2.19.0",
"@vitejs/plugin-basic-ssl": "^1.2.0",
"kalman-filter": "^2.3.0",
"lit-element": "^4.1.1",
"lit-html": "^3.2.1",
"nan": "^2.22.0",
"pathkit-wasm": "^1.0.0",
"rollup-plugin-copy": "^3.5.0",
"workbox-window": "^7.3.0"
},
"devDependencies": {
"eslint": "^9.16.0",
"eslint-plugin-lit": "1.15.0",
"rimraf": "^6.0.1",
"vite": "^6.0.2",
"workbox-cli": "^7.3.0"
},
"keywords": [],
"license": "BSD-3-Clause",
"author": {
"name": "Alexis Menard",
"email": "[email protected]"
}
}