-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.34 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
53
54
55
56
57
58
59
{
"name": "@three11/dom-helpers",
"version": "2.0.0",
"description": "Helper functions for faster DOM scripting",
"keywords": [
"DOM Helpers",
"DOM Scripting",
"DOM Functions"
],
"homepage": "https://github.com/three11/dom-helpers#readme",
"bugs": {
"url": "https://github.com/three11/dom-helpers/issues"
},
"license": "GPL-3.0",
"authors": [
{
"name": "Three 11 Ltd",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Alexander Panayotov",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Atanas Atanasov",
"email": "[email protected]",
"role": "Developer"
}
],
"repository": {
"type": "git",
"url": "github:three11/dom-helpers"
},
"scripts": {
"lint": "eslint 'src/**/*.ts'",
"build": "microbundle"
},
"dependencies": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"microbundle": "0.15.1",
"typescript": "5.7.2"
},
"type": "module",
"source": "src/dom-helpers.ts",
"exports": {
"require": "./dist/dom-helpers.cjs",
"default": "./dist/dom-helpers.modern.js"
},
"main": "./dist/dom-helpers.cjs",
"types": "./dist/dom-helpers.d.ts",
"module": "./dist/dom-helpers.module.js",
"unpkg": "./dist/dom-helpers.umd.js"
}