-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.39 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
{
"name": "lit-resizable",
"version": "0.0.16",
"author": "Zack Arnett",
"license": "MIT",
"description": "A resizable element for Lit Element",
"repository": "https://github.com/zsarnett/Lit-Resizable",
"homepage": "https://github.com/zsarnett/Lit-Resizable",
"bugs": {
"url": "https://github.com/zsarnett/Lit-Resizable/issues",
"email": "zackarnett@zackarnett.com"
},
"files": [
"dist"
],
"main": "dist/lit-resizable.js",
"module": "dist/lit-resizable.js",
"type": "module",
"scripts": {
"build": "npm run build-ts && npm run build-rollup",
"build-ts": "tsc",
"build-rollup": "rollup -c",
"watch": "npm run build-ts && npm run watch-rollup",
"watch-rollup": "rollup -cw",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix"
},
"dependencies": {
"lit-draggable": "0.0.14",
"lit-element": "^2.3.1",
"lit-html": "^1.2.1"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-typescript": "^5.0.2",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.0.5",
"rollup": "^2.22.1",
"rollup-plugin-filesize": "^9.0.2",
"rollup-plugin-terser": "^6.1.0",
"ts-lit-plugin": "^1.2.0",
"typescript": "^3.9.7"
}
}