-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.51 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.51 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "indom",
"version": "1.0.7",
"type": "commonjs",
"description": "InDom - 3.8 modern JavaScript DOM library - powerful, easy and automates cleanup",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/constcallid/indom.git"
},
"main": "./dist/indom.js",
"module": "./dist/indom.esm.js",
"types": "./dist/indom.d.ts",
"exports": {
".": {
"types": "./dist/indom.d.ts",
"import": "./dist/indom.esm.js",
"require": "./dist/indom.js",
"default": "./dist/indom.esm.js"
}
},
"sideEffects": true,
"unpkg": "./dist/indom.esm.min.js",
"jsdelivr": "./dist/indom.esm.min.js",
"files": [
"dist/*.js",
"dist/*.map",
"dist/*.d.ts",
"src/*.ts",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"directories": {
"doc": "docs",
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"dom",
"dom-library",
"dom-manipulation",
"dom-helper",
"dom-utils",
"dom-events",
"event-handling",
"auto-cleanup",
"memory-leak-free",
"lightweight",
"frontend",
"es2022",
"typescript",
"esm",
"umd",
"spa",
"pwa",
"javascript",
"no-dependencies"
],
"author": "Constantine Callid <constantinecallid@gmail.com>",
"bugs": {
"url": "https://github.com/constcallid/indom/issues"
},
"homepage": "https://github.com/constcallid/indom#readme",
"devDependencies": {
"typescript": "^5.9.3"
}
}