This repository was archived by the owner on Jul 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.82 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.82 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
58
59
60
{
"name": "@ollion/flow-code-editor",
"version": "1.1.0",
"description": "Code editor component for flow library",
"module": "dist/flow-code-editor.es.js",
"main": "dist/flow-code-editor.es.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "bash ./compile.sh",
"build:watch": "concurrently --kill-others \"vite build --emptyOutDir --watch\" \"tsc --watch\"",
"analyze": "cem analyze --litelement --globs \"src/**/*.ts\" && wca analyze src --format vscode --outFile html.html-data.json",
"analyze:watch": "cem analyze --litelement --globs \"src/**/*.ts\" --watch"
},
"keywords": [
"web-components",
"lit-element",
"typescript",
"lit"
],
"dependencies": {
"@ollion/flow-core": "workspace:*",
"@ollion/flow-core-config": "workspace:*",
"lit": "^3.1.0",
"monaco-editor": "^0.38.0"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.5.7",
"@open-wc/testing": "^3.1.5",
"@types/jest": "29.5.5",
"@web/dev-server-esbuild": "^0.4.1",
"@web/test-runner": "^0.17.1",
"concurrently": "^8.2.1",
"esbuild-sass-plugin": "2.2.6",
"lit-html": "^3.1.0",
"sass": "^1.52.3",
"typescript": "^5.2.2",
"vite": "^4.5.3",
"web-component-analyzer": "^2.0.0-next.4"
},
"peerDependencies": {
"@ollion/flow-core": "^2.0.3",
"@ollion/flow-core-config": "^1.1.3"
},
"repository": {
"type": "git",
"url": "https://github.com/ollionorg/flow-core.git",
"directory": "packages/flow-code-editor"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"customElements": "custom-elements.json",
"bugs": {
"url": "https://github.com/ollionorg/flow-core/issues"
},
"homepage": "https://github.com/ollionorg/flow-table#readme",
"author": "@ollion",
"license": "MIT"
}