-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.39 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.39 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
{
"name": "ts-dom-utils",
"version": "2.3.1",
"description": "A simple utility library for DOM manipulation. Provides TypeScript typings for enhanced development experience in TS environments.",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"type": "module",
"sideEffects": false,
"files": [
"dist"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"lint": "tsc",
"format": "prettier --write ./src",
"release": "npm run build && changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rafaucau/ts-dom-utils.git"
},
"keywords": [
"dom",
"typescript",
"utilities"
],
"author": "rafaucau (https://github.com/rafaucau)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rafaucau/ts-dom-utils/issues"
},
"homepage": "https://github.com/rafaucau/ts-dom-utils#readme",
"funding": "https://github.com/rafaucau/ts-dom-utils?sponsor=1",
"devDependencies": {
"@arethetypeswrong/core": "^0.18.2",
"@changesets/cli": "^2.30.0",
"prettier": "^3.8.1",
"publint": "^0.3.18",
"tsdown": "^0.21.5",
"typescript": "^6.0.2"
}
}