-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.92 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
{
"name": "@patelka2211/dominar",
"version": "1.2.4",
"description": "Dominar is a powerful library designed to make it easy for developers to manipulate the Document Object Model (DOM) and create dynamic HTML content. Dominar empowers you to take control of your web development projects like a pro. Unleash the power to dominate the DOM with Dominar.",
"main": "index.js",
"module": "index.js",
"types": "index.d.ts",
"scripts": {
"tsc-build": "tsc -p ./tsconfig.json",
"rollup-esm": "rollup -c --environment format:esm",
"rollup-iife": "rollup -c --environment format:iife",
"terser-esm": "terser ./index.js -c -m --toplevel -o ./index.js",
"terser-iife": "terser ./Dominar.js -c -m -o ./Dominar.js",
"prerelease-build": "npm run tsc-build && npm run rollup-esm && npm run rollup-iife && rm -rf ./lib/",
"build": "npm run tsc-build && npm run rollup-esm && npm run rollup-iife && npm run terser-esm && npm run terser-iife && rm -rf ./lib/",
"test-build": "npm run tsc-build && npm run rollup-esm && tsc ./test/index.ts -t es6 && rollup ./test/index.js -o ./test/out.js && rm -rf ./lib/"
},
"files": [
"index.js",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/patelka2211/dominar.git"
},
"keywords": [
"Dominar",
"Dominar from KPVERSE",
"Dominar.js",
"KPVERSE",
"Developed by KP",
"Kartavya Patel",
"patelka2211",
"front-end",
"Dynamic content",
"DOM manipulation",
"Front-end development",
"UI development",
"Lightweight",
"Event handling",
"Open source"
],
"author": "Kartavya Patel <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/patelka2211/dominar/issues"
},
"homepage": "https://kpverse.in/dominar/",
"devDependencies": {
"rollup": "^3.25.1",
"rollup-plugin-dts": "^5.3.0",
"terser": "^5.17.7",
"typescript": "^5.1.3"
}
}