-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1006 Bytes
/
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
{
"name": "ts-lib-enhance",
"version": "1.0.20",
"type": "module",
"description": "Enhance typescript default lib.*.d.ts",
"keywords": [
"typescript",
"types"
],
"homepage": "https://github.com/ziloen/ts-lib-enhance",
"author": "ziloen",
"main": "shim.d.ts",
"types": "shim.d.ts",
"sideEffects": false,
"files": [
"InputEventInputType.d.ts",
"KeyboardEventKey.d.ts",
"highlight.d.ts",
"lib.dom.d.ts",
"lib.es.d.ts",
"shim.d.ts",
"typed-query-selector.d.ts",
"utils.d.ts",
"view-transition.d.ts"
],
"scripts": {
"dev": "tsc --noEmit --watch",
"release": "bumpp package.json --commit --no-push && pnpm -r publish --access public",
"lint": "eslint . --fix",
"test": "tsc --noEmit"
},
"dependencies": {
"bumpp": "^9.8.1",
"type-fest": "^4.28.0",
"typed-query-selector": "^2.12.0",
"typescript": "^5.7.2"
},
"devDependencies": {
"@ziloen/eslint-config": "^0.1.54",
"eslint": "^9.15.0"
}
}