-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.63 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.63 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@reallyland/really-elements",
"version": "0.12.1",
"description": "A collection of opinionated custom elements for the web",
"keywords": [
"elements",
"lit",
"lit-element",
"lit-html",
"polymer",
"really",
"really-elements",
"typescript",
"web-components"
],
"homepage": "https://github.com/reallyland/really-elements",
"repository": {
"type": "git",
"url": "git@github.com:reallyland/really-elements.git"
},
"license": "MIT",
"author": {
"name": "Rong Sen Ng (motss)",
"email": "wes.ngrongsen@gmail.com",
"url": "https://github.com/motss"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./clipboard-copy": {
"types": "./dist/clipboard-copy/clipboard-copy.d.ts",
"import": "./dist/clipboard-copy/clipboard-copy.js",
"default": "./dist/clipboard-copy/clipboard-copy.js"
},
"./code-configurator": {
"types": "./dist/code-configurator/code-configurator.d.ts",
"import": "./dist/code-configurator/code-configurator.js",
"default": "./dist/code-configurator/code-configurator.js"
},
"./dist/*": "./dist/*",
"./really-clipboard-copy": {
"types": "./dist/clipboard-copy/really-clipboard-copy.d.ts",
"import": "./dist/clipboard-copy/really-clipboard-copy.js",
"default": "./dist/clipboard-copy/really-clipboard-copy.js"
},
"./really-code-configurator": {
"types": "./dist/code-configurator/really-code-configurator.d.ts",
"import": "./dist/code-configurator/really-code-configurator.js",
"default": "./dist/code-configurator/really-code-configurator.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"dist/**/*.d.ts.map",
"dist/**/*.d.ts",
"dist/**/*.js.map",
"dist/**/*.js",
"!**/*demo*/**/*.*",
"!**/*test*/**/*.*"
],
"scripts": {
"build": "tsc -p tsconfig.prod.json",
"clean": "sh $(npm root)/@reallyland/tools/cleanup.sh",
"dev": "npm run serve & npm run watch",
"fmt": "rome format --verbose --write .",
"fmt.check": "rome format --verbose .",
"postinstall": "FILE=\"$(npm root)/@reallyland/tools/postinstall.sh\"; if [ -f \"$FILE\" ]; then sh \"$FILE\"; fi",
"lint": "sh $(npm root)/@reallyland/tools/lint-build.sh -c $(npm root)/@reallyland/tools/browser/lit/.eslintrc.json",
"lint-commit": "sh $(npm root)/@reallyland/tools/lint-commit.sh",
"lint:build": "sh $(npm root)/@reallyland/tools/lint-build.sh -c $(npm root)/@reallyland/tools/browser/lit/.build.eslintrc.json",
"pre-commit": "sh $(npm root)/@reallyland/tools/pre-commit.sh",
"prepublishOnly": "npm run lint:build && npm run build",
"serve": "npm x -y @web/dev-server@latest -- wds --node-resolve -dw -p 3030",
"test": "wtr --config wtr.config.mjs --update-snapshots",
"watch": "npm run clean && tsc --watch",
"wtr": "wtr --config wtr.config.mjs"
},
"dependencies": {
"@material/mwc-button": "^0.27.0",
"@reallyland/esm": "^0.0.8",
"lit": "^2.7.0",
"tslib": "^2.5.0"
},
"devDependencies": {
"@open-wc/testing": "^3.1.7",
"@reallyland/tools": "^0.3.5",
"@types/prismjs": "^1.26.0",
"@web/dev-server-esbuild": "^0.3.4",
"@web/test-runner": "^0.15.1",
"@web/test-runner-mocha": "^0.7.2",
"@web/test-runner-playwright": "^0.9.0",
"eslint-plugin-lit": "^1.8.2",
"eslint-plugin-lit-a11y": "^2.4.0",
"rome": "^11.0.0"
},
"engines": {
"node": ">= 16.x",
"npm": ">= 8.x"
},
"publishConfig": {
"access": "public"
}
}