-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.34 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.34 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
{
"name": "html-dom-js",
"version": "1.1.2",
"description": "A JavaScript library for creating HTML elements",
"license": "MIT",
"author": "vrtexe",
"type": "module",
"main": "lib/html.js",
"types": "lib/html.d.ts",
"exports": {
".": {
"default": "./lib/html.js",
"types": "./lib/html.d.ts"
},
"./global": {
"default": "./lib/index.js",
"types": "./lib/index.d.ts"
},
"./html": {
"default": "./lib/html.js",
"types": "./lib/html.d.ts"
},
"./html/deprecated": {
"default": "./lib/html-deprecated.js",
"types": "./lib/html-deprecated.d.ts"
},
"./svg": {
"default": "./lib/svg.js",
"types": "./lib/svg.d.ts"
},
"./math": {
"default": "./lib/math.js",
"types": "./lib/math.d.ts"
},
"./type/*": {
"default": "./lib/types/*"
}
},
"files": [
"lib"
],
"scripts": {
"start": "npx http-server . --port 3100",
"clean-types": "node ./clean-types.js",
"generate-types": "npm run clean-types && npx -p typescript tsc -p tsconfig.json"
},
"homepage": "https://github.com/vrtexe/html-dom-js#readme",
"bugs": {
"url": "https://github.com/vrtexe/html-dom-js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vrtexe/html-dom-js.git"
},
"packageManager": "^npm@11.6.0"
}