-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 957 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
{
"name": "ts-lib-enhance",
"version": "1.0.21",
"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",
"lib.dom.d.ts",
"lib.es.d.ts",
"shim.d.ts",
"typed-query-selector.d.ts",
"utils.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": "^10.0.3",
"type-fest": "^4.36.0",
"typed-query-selector": "^2.12.0",
"typescript": "^5.8.2"
},
"devDependencies": {
"@ziloen/eslint-config": "^0.1.59",
"eslint": "^9.21.0"
}
}