-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
77 lines (77 loc) · 2.48 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
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": "@endo/evaluator",
"description": "Webcomponent endo-evaluator following open-wc recommendations",
"license": "MIT",
"author": "@endo/evaluator",
"version": "0.1.0",
"type": "module",
"scripts": {
"lint": "eslint --ext .js,.html . --ignore-path .gitignore && prettier \"**/*.js\" --check --ignore-path .gitignore",
"format": "eslint --ext .js,.html . --fix --ignore-path .gitignore && prettier \"**/*.js\" --write --ignore-path .gitignore",
"prepare": "husky",
"build": "rimraf dist && rollup -c rollup.config.js && npm run analyze -- --exclude dist",
"start:build": "web-dev-server --root-dir dist --app-index index.html --open",
"analyze": "cem analyze --litelement",
"start": "web-dev-server",
"dev": "node --import=./o.js"
},
"dependencies": {
"@agoric/base-zone": "^0.1.1-u16.0",
"@agoric/vow": "^0.2.0-u16.1",
"@endo/init": "^1.1.4",
"@endo/marshal": "^1.5.3",
"@open-wc/dev-server-hmr": "^0.2.0",
"lit": "^3.1.4",
"ses": "^1.8.0"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.10.3",
"@open-wc/eslint-config": "^12.0.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.2.3",
"@web/dev-server": "^0.4.6",
"@web/dev-server-import-maps": "^0.2.1",
"@web/rollup-plugin-html": "^2.3.0",
"@web/rollup-plugin-import-meta-assets": "^2.2.1",
"babel-plugin-template-html-minifier": "^4.1.0",
"deepmerge": "^4.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-wc": "^2.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"rimraf": "^5.0.9",
"rollup": "^4.18.1",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-workbox": "^8.1.0"
},
"resolutions": {
"strip-ansi": "6.0.1",
"@endo/eventual-send@npm:^1.2.5": "patch:@endo/eventual-send@npm%3A1.2.5#~/.yarn/patches/@endo-eventual-send-npm-1.2.5-f058f2db04.patch",
"@endo/eventual-send@npm:^1.2.2": "patch:@endo/eventual-send@npm%3A1.2.5#~/.yarn/patches/@endo-eventual-send-npm-1.2.5-f058f2db04.patch"
},
"eslintConfig": {
"root": true,
"ignorePatterns": [
"node_modules",
"dist"
],
"extends": [
"@open-wc",
"prettier"
]
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
},
"packageManager": "[email protected]",
"customElements": "custom-elements.json"
}