-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.33 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
{
"name": "declarative-shadow-dom-polyfill",
"version": "0.4.0",
"license": "LGPL-2.1-or-later",
"author": "[email protected]",
"description": "Web standard polyfill for Declarative Shadow DOM",
"keywords": [
"web",
"component",
"dom",
"standard",
"polyfill",
"ssr"
],
"homepage": "https://web-cell.dev/declarative-shadow-dom-polyfill/",
"repository": {
"type": "git",
"url": "git+https://github.com/EasyWebApp/declarative-shadow-dom-polyfill.git"
},
"bugs": {
"url": "https://github.com/EasyWebApp/declarative-shadow-dom-polyfill/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"peerDependencies": {
"typescript": ">=5.5.3"
},
"devDependencies": {
"@types/jsdom": "^21.1.7",
"@types/node": "^18.19.42",
"husky": "^9.1.1",
"jsdom": "^24.1.1",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"tsx": "^4.16.2",
"typedoc": "^0.26.5",
"typedoc-plugin-mdn-links": "^3.2.5",
"typescript": "~5.5.4"
},
"prettier": {
"trailingComma": "none"
},
"lint-staged": {
"*.{md,json,yml,ts}": "prettier --write"
},
"scripts": {
"prepare": "husky",
"test": "lint-staged && tsx test/index.spec.ts",
"build": "rm -rf dist/ docs/ && tsc && typedoc source/",
"prepublishOnly": "npm test && npm run build"
}
}