-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.83 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
{
"name": "seia",
"version": "0.2.2",
"type": "module",
"author": "藍+85CD",
"license": "WTFPL",
"keywords": [
"indieweb",
"webcomponent",
"webcomponents",
"web-components",
"webmention",
"webmentions"
],
"description": "Browser-side Web Component for rendering Webmentions.",
"repository": {
"type": "git",
"url": "https://github.com/importantimport/seia.git"
},
"homepage": "https://seia.js.org",
"bugs": "https://github.com/importantimport/seia/issues",
"main": "dist/seia.js",
"module": "dist/seia.js",
"exports": {
".": {
"types": "./dist/seia.d.ts",
"import": "./dist/seia.js"
},
"./styles/*": "./dist/styles/*"
},
"types": "dist/seia.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"build:site": "vite build -c vite.config.site.ts",
"preview": "vite preview",
"gen": "lit labs gen",
"lint": "eslint . --ignore-path .gitignore && prettier . --ignore-path .gitignore",
"format": "eslint . --ignore-path .gitignore --fix && prettier . --ignore-path .gitignore --write"
},
"devDependencies": {
"@iconify-json/simple-icons": "^1.1.73",
"@iconify-json/svg-spinners": "^1.1.2",
"@lit-labs/cli": "^0.6.0",
"@lit-labs/compiler": "1.0.0-pre.0",
"@lit/task": "1.0.0-pre.0",
"@open-wc/eslint-config": "^12.0.0",
"@rollup/plugin-typescript": "^11.1.4",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"@unocss/reset": "^0.56.5",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"lit": "3.0.0-pre.1",
"lit-html": "3.0.0-pre.1",
"prettier": "^3.0.3",
"prettier-config-standard": "^7.0.0",
"rollup-plugin-html-literals": "^1.1.7",
"typescript": "^5.2.2",
"unocss": "^0.56.5",
"vite": "^4.4.10"
}
}