-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.23 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.23 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@bitcode/components",
"version": "0.1.0",
"description": "BitCode ERP Web Components built with Stencil",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/bc-components/bc-components.esm.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs.js"
},
"./utils": {
"import": "./dist/components/index.js",
"types": "./dist/components/index.d.ts"
},
"./loader": {
"import": "./loader/index.js",
"require": "./loader/index.cjs.js"
}
},
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec",
"test:watch": "stencil test --spec --watchAll",
"test:e2e": "stencil test --e2e",
"generate": "stencil generate"
},
"devDependencies": {
"@stencil/core": "^4.22.0",
"@types/jest": "^29.5.14",
"@types/jsbarcode": "^3.11.4",
"@types/leaflet": "^1.9.21",
"@types/markdown-it": "^14.1.2",
"@types/qrcode": "^1.5.6",
"@types/sortablejs": "^1.15.9",
"jest": "^29.7.0",
"jest-cli": "^29.7.0"
},
"license": "MIT",
"dependencies": {
"@codemirror/basic-setup": "^0.20.0",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/lang-xml": "^6.1.0",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.41.0",
"@fullcalendar/core": "^6.1.20",
"@fullcalendar/daygrid": "^6.1.20",
"@fullcalendar/interaction": "^6.1.20",
"@stencil/store": "^2.2.2",
"@tiptap/core": "^3.22.3",
"@tiptap/extension-placeholder": "^3.22.3",
"@tiptap/starter-kit": "^3.22.3",
"echarts": "^6.0.0",
"frappe-gantt": "^1.2.2",
"jsbarcode": "^3.12.3",
"leaflet": "^1.9.4",
"markdown-it": "^14.1.1",
"qrcode": "^1.5.4",
"signature_pad": "^5.1.3",
"sortablejs": "^1.15.7",
"xlsx": "^0.18.5"
}
}