-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 912 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 912 Bytes
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
{
"name": "inline",
"version": "1.0.0",
"description": "Lightweight, type-safe DOM builder with CSS selector syntax",
"main": "dist/inline.js",
"types": "dist/inline.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/inline.js",
"types": "./dist/inline.d.ts"
}
},
"files": [
"dist",
"readme.md"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build"
},
"keywords": [
"dom",
"dom-builder",
"typescript",
"hyperscript",
"emmet",
"pug",
"type-safe",
"vanilla-js"
],
"author": "Brookes",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/brookesb91/inline.git"
},
"bugs": {
"url": "https://github.com/brookesb91/inline/issues"
},
"homepage": "https://github.com/brookesb91/inline#readme",
"devDependencies": {
"typescript": "^5.0.0"
}
}