-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.32 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
{
"name": "@power-elements/codesandbox-button",
"version": "0.1.0",
"description": "Custom Element that Shows a CodeSandbox demo when you click on it.",
"author": "codesandbox-button",
"license": "MIT",
"type": "module",
"main": "codesandbox-button.js",
"module": "codesandbox-button.js",
"scripts": {
"build:analyze": "cem analyze --litelement",
"build:rollup": "rollup -c",
"build:types": "tsc",
"build": "run-p build:**",
"prepare": "npm run build"
},
"dependencies": {
"@babel/runtime": "^7.14.8",
"lit": "^2.0.0-rc.2",
"tslib": "^2.3.0"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.4.13",
"@pwrs/eslint-config": "^0.0.22",
"@rollup/plugin-commonjs": "^19.0.2",
"@rollup/plugin-node-resolve": "^13.0.4",
"cem-plugin-readme": "^0.1.4",
"eslint": "^7.31.0",
"husky": "^4.3.5",
"npm-run-all": "^4.1.5",
"rollup": "^2.54.0",
"rollup-plugin-esbuild": "^4.5.0",
"stylelint-config-standard": "^22.0.0",
"typescript": "^4.3.5"
},
"files": [
"codesandbox-button.js",
"*.d.ts",
"README.md",
"LICENCE",
"custom-elements.json"
],
"husky": {
"hooks": {
"pre-commit": "npm run build && git add README.md && git add custom-elements.json"
}
},
"customElements": "custom-elements.json"
}