-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
74 lines (74 loc) · 2.28 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
{
"name": "dyad",
"private": true,
"version": "0.0.1",
"main": "my-element.js",
"module": "my-element.js",
"type": "module",
"engines": {
"node": ">=20.18.1"
},
"scripts": {
"cli": "uv run src/dyad_app/cli/cli.py",
"build": "yarn rsbuild build",
"build:dev": "NODE_ENV=development yarn rsbuild build --watch",
"typecheck:ts": "yarn tsc --noEmit",
"test": "npm run test:py && npm run test:e2e",
"test:py": "./scripts/py_test.sh",
"test:e2e": "yarn playwright test",
"test:update": "yarn playwright test -- --update-snapshots && git apply test-results/rebaselines.patch",
"fake-llm": "uv run e2e/fakes/fake_llm_server.py",
"test-server": "./scripts/run_test_server.sh",
"clear-cache": "rm -rf src/dyad_app/static/build/"
},
"keywords": [
"web-components",
"lit-element",
"typescript",
"lit"
],
"dependencies": {
"@codesandbox/sandpack-client": "^2.19.8",
"dompurify": "^3.1.7",
"fuse.js": "^7.0.0",
"lit": "^3.2.0",
"marked": "^14.1.2",
"monaco-editor": "^0.52.2",
"monaco-editor-webpack-plugin": "^7.1.0",
"prosemirror-autocomplete": "^0.4.3",
"prosemirror-commands": "^1.6.0",
"prosemirror-history": "^1.4.1",
"prosemirror-keymap": "^1.2.2",
"prosemirror-markdown": "^1.13.1",
"prosemirror-model": "^1.23.0",
"prosemirror-schema-basic": "^1.2.3",
"prosemirror-state": "^1.4.3",
"prosemirror-suggest": "^3.0.0",
"prosemirror-view": "^1.34.3",
"pyright": "^1.1.385",
"uuid": "^10.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@custom-elements-manifest/analyzer": "^0.6.3",
"@open-wc/testing": "^4.0.0",
"@playwright/test": "^1.50.1",
"@rsbuild/core": "^1.2.19",
"@rspack/cli": "^1.2.8",
"@rspack/core": "^1.2.8",
"@types/node": "^22.13.3",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"@web/dev-server": "^0.1.31",
"@web/dev-server-legacy": "^1.0.0",
"@web/test-runner": "^0.15.0",
"@web/test-runner-playwright": "^0.9.0",
"@webcomponents/webcomponentsjs": "^2.8.0",
"eslint": "^8.15.0",
"lit-analyzer": "^1.2.1",
"prettier": "^3.3.3",
"rimraf": "^3.0.2",
"typescript": "~5.5.0"
},
"customElements": "custom-elements.json"
}