-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.05 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
{
"name": "@wopjs/dom",
"version": "0.1.3",
"description": "Collection of common DOM utilities. TypeScript friendly and minification friendly.",
"repository": "wopjs/dom",
"type": "module",
"main": "./dist/index.cjs",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"src",
"dist"
],
"scripts": {
"prepublishOnly": "npm run build",
"lint": "eslint && prettier --check .",
"build": "tsup src/index.ts --clean --format esm,cjs --treeshake --target esnext --dts"
},
"keywords": [
"dom"
],
"maintainers": [
{
"name": "CRIMX",
"email": "[email protected]"
},
{
"name": "hyrious",
"email": "[email protected]"
}
],
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.15.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"prettier": "^3.3.3",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.15.0"
}
}