-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·52 lines (52 loc) · 1.36 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
{
"name": "jhson.js",
"title": "JHson.js",
"description": "A JavaScript library for converting between HTML and JSON, with binding, templating, attributes, and CSS support.",
"version": "2.3.0",
"homepage": "https://www.william-troup.com/jhson-js/",
"author": {
"name": "Bunoon"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/williamtroup/JHson.js"
},
"keywords": [
"typescript",
"javascript",
"css",
"html5",
"jhson.js",
"json",
"html",
"convert",
"conversion",
"converter",
"template",
"render",
"text",
"formatting",
"binding"
],
"bugs": {
"url": "https://github.com/williamtroup/JHson.js/issues"
},
"main": "dist/jhson.js",
"types": "dist/jhson.d.ts",
"scripts": {
"build-all": "npm run build && npm run build-minimized",
"build": "tsup --config tsup.build.config.ts && tsup --config tsup.build.esm.config.ts",
"build-minimized": "tsup --config tsup.build.min.config.ts",
"build-typescript": "tsup --config tsup.build.config.ts",
"build-typescript-esm": "tsup --config tsup.build.esm.config.ts",
"build-typescript-minimized": "tsup --config tsup.build.min.config.ts"
},
"devDependencies": {
"@swc/core": "^1.7.23",
"sass": "^1.78.0",
"terser": "^5.31.6",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
}
}