-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 910 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 910 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
46
47
{
"name": "dom-generator",
"version": "1.1.7",
"type": "module",
"license": "MIT",
"files": [
"dist",
"README.md"
],
"main": "./dist/domGenerator.umd.cjs",
"module": "./dist/domGenerator.js",
"typings": "./dist/main.d.ts",
"keywords": [
"library",
"silverethical",
"ts",
"dom",
"generator",
"dom-generator",
"vanilla",
"js"
],
"author": "silverethical",
"repository": {
"type": "git",
"url": "git+https://github.com/Silverethical/DOM-Generator.git"
},
"exports": {
".": {
"import": "./dist/domGenerator.js",
"require": "./dist/domGenerator.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.11.30",
"rollup-plugin-typescript-paths": "^1.5.0",
"tslib": "^2.6.2",
"typescript": "^5.4.3",
"vite": "^5.2.2"
}
}