generated from lit/lit-element-starter-ts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 3.29 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
{
"name": "@silexlabs/expression-input",
"version": "0.0.25",
"description": "A web component to include in your JS/TS projects. Your users can create an expression or a ordoned list with your data tree.",
"main": "dist/expression-input.js",
"module": "dist/expression-input.js",
"type": "module",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rimraf dist/expression-input.{d.ts,d.ts.map,js,js.map} dist/test/expression-input.{d.ts,d.ts.map,js,js.map} dist/test/expression-input.{d.ts,d.ts.map,js,js.map}",
"lint": "npm run lint:lit-analyzer && npm run lint:eslint",
"lint:eslint": "eslint 'src/**/*.ts'",
"lint:lit-analyzer": "lit-analyzer --rules.no-incompatible-property-type=off --rules.no-missing-import=off --rules.no-unknown-attribute=off",
"format": "prettier \"**/*.{cjs,html,js,json,md,ts}\" --ignore-path ./.eslintignore --write --no-semi",
"docs": "npm run docs:clean && npm run build && npm run analyze && npm run docs:build && npm run docs:assets && npm run docs:gen",
"docs:clean": "rimraf docs",
"docs:gen": "eleventy --config=.eleventy.cjs",
"docs:gen:watch": "eleventy --config=.eleventy.cjs --watch",
"docs:build": "rollup -c --file docs/expression-input.bundled.js",
"docs:assets": "cp node_modules/prismjs/themes/prism-okaidia.css docs/",
"docs:serve": "wds --root-dir=docs --node-resolve --watch",
"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": "npm run test:dev && npm run test:prod",
"test:dev": "LD_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu/ wtr",
"test:watch": "LD_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu/ wtr --watch",
"test:prod": "LD_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu/ MODE=prod wtr",
"test:prod:watch": "LD_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu/ MODE=prod wtr --watch",
"checksize": "rollup -c ; cat dist/expression-input.bundled.js | gzip -9 | wc -c ; rm dist/expression-input.bundled.js",
"prepare": "husky"
},
"keywords": [
"web-components",
"lit-element",
"typescript",
"lit"
],
"author": "Alex Hoyau (https://github.com/lexoyo)",
"license": "MIT",
"dependencies": {
"lit": "^3.2.1"
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@custom-elements-manifest/analyzer": "^0.10.4",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@open-wc/testing": "^4.0.0",
"@playwright/test": "^1.49.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@types/mocha": "^10.0.10",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"@web/dev-server": "^0.4.6",
"@web/dev-server-legacy": "^2.1.1",
"@web/test-runner": "^0.19.0",
"@web/test-runner-playwright": "^0.11.0",
"@webcomponents/webcomponentsjs": "^2.8.0",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lit-analyzer": "^2.0.3",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"rollup": "^4.28.1",
"typescript": "~5.7.2"
}
}