-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 977 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 977 Bytes
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
{
"name": "lwc-plugin-shape-drawing",
"version": "2.1.0",
"type": "module",
"main": "./dist/lwc-plugin-shape-drawing.umd.cjs",
"module": "./dist/lwc-plugin-shape-drawing.js",
"types": "./dist/lwc-plugin-shape-drawing.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/lwc-plugin-shape-drawing.d.ts",
"default": "./dist/lwc-plugin-shape-drawing.js"
},
"require": {
"types": "./dist/lwc-plugin-shape-drawing.d.cts",
"default": "./dist/lwc-plugin-shape-drawing.umd.cjs"
}
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite --config src/vite.config.js",
"compile": "tsc && node compile.mjs",
"prepare": "npm run compile",
"prepublishOnly": "npm run compile"
},
"devDependencies": {
"typescript": "^5.0.4",
"vite": "^4.3.1"
},
"dependencies": {
"dts-bundle-generator": "^8.0.1",
"fancy-canvas": "^2.1.0",
"lightweight-charts": "^5.0.0"
}
}