-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.24 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.24 KB
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
{
"name": "project-voice",
"version": "0.0.1",
"description": "Communication support tool powered by generative AI",
"scripts": {
"dev": "concurrently \"npm run watch\" \"npm run serve\"",
"serve": "python main.py",
"lint": "tsc --noEmit && gts lint 'src/**/*.ts' && python -m yapf --diff *.py tools/*.py",
"clean": "gts clean",
"build": "npm run build:i18n && npm run build:storybook && esbuild src/index.ts --bundle --minify --outfile=static/index.js",
"build:i18n": "lit-localize build",
"build:storybook": "storybook build",
"watch": "npm run build:i18n && esbuild src/index.ts --bundle --watch --define:process.env.NODE_ENV=\\\"development\\\" --outfile=static/index.js",
"fix": "gts fix 'src/**/*.ts' && python -m yapf -i *.py tools/*.py",
"pretest": "esbuild src/tests/test_index.ts --bundle --outfile=spec/test_bundle.js",
"test:js": "jasmine-browser-runner runSpecs",
"test": "concurrently \"npm run test:js\" \"cross-env PYTHONPATH=. pytest -vv\"",
"deploy": "npm run build && gcloud app deploy app.yaml --no-promote",
"postinstall": "python -m pip install -r requirements.txt && python -m pip install -r requirements-dev.txt",
"storybook": "storybook dev -p 6006"
},
"license": "Apache-2.0",
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@lit/localize-tools": "^0.8.1",
"@storybook/addon-docs": "^9.1.5",
"@storybook/web-components": "^9.1.5",
"@storybook/web-components-vite": "^9.1.5",
"@types/dom-speech-recognition": "^0.0.7",
"@types/jasmine": "^5.1.9",
"@types/node": "^24.3.1",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"esbuild": "^0.25.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-storybook": "^9.1.5",
"gts": "^6.0.2",
"http-server": "^14.1.1",
"jasmine-browser-runner": "^3.0.0",
"jasmine-core": "^5.10.0",
"node-localstorage": "^3.0.5",
"storybook": "^9.1.4",
"typescript": "^5.9.3"
},
"dependencies": {
"@lit-labs/signals": "^0.1.3",
"@lit/context": "^1.1.6",
"@lit/localize": "^0.12.1",
"@material/web": "^2.4.1",
"diff-match-patch": "^1.0.5",
"lit": "^3.3.2",
"signal-polyfill": "^0.2.2",
"simhash-js": "github:beketa/simhash-js"
}
}