-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.13 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
{
"name": "editme",
"version": "0.0.1",
"description": "Web Components based blocks editor",
"main": "index.js",
"author": "Vladislav <[email protected]>",
"license": "MIT",
"type": "module",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "npm run lint:lit-analyzer && npm run lint:eslint",
"lint:eslint": "eslint 'src/**/*.ts'",
"lint:lit-analyzer": "lit-analyzer",
"format": "prettier \"**/*.{cjs,html,js,json,md,ts}\" --ignore-path ./.eslintignore --write",
"analyze": "cem analyze --litelement --globs \"src/**/*.ts\"",
"analyze:watch": "cem analyze --litelement --globs \"src/**/*.ts\" --watch",
"serve": "wds --watch",
"serve:prod": "MODE=prod npm run serve",
"test": "yarn mocha",
"uitest": "yarn run uitest:dev && yarn run uitest:prod",
"uitest:dev": "wtr",
"uitest:watch": "wtr --watch",
"uitest:prod": "MODE=prod wtr",
"uitest:prod:watch": "MODE=prod wtr --watch",
"checksize": "rollup -c ; cat my-element.bundled.js | gzip -9 | wc -c ; rm my-element.bundled.js"
},
"dependencies": {
"@lit/context": "^1.0.1",
"immer": "^10.0.3",
"lit": "^3.0.2",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.9.0",
"@open-wc/testing": "^4.0.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@types/chai-subset": "^1.3.5",
"@types/mocha": "^10.0.4",
"@types/node": "^20.9.3",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"@web/dev-server": "^0.4.0",
"@web/dev-server-legacy": "^1.0.0",
"@web/test-runner": "^0.18.0",
"@web/test-runner-playwright": "^0.11.0",
"@webcomponents/webcomponentsjs": "^2.8.0",
"chai": "^4.3.10",
"chai-subset": "^1.6.0",
"eslint": "^8.53.0",
"lit-analyzer": "^2.0.1",
"mocha": "^10.2.0",
"prettier": "^3.1.0",
"rollup": "^4.4.0",
"rollup-plugin-summary": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"sinon": "^17.0.1",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}