-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 843 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "web-swift",
"description": "Swift UI on Web Components API based by TypeScript.",
"version": "1.0.0",
"keywords": [
"Swift", "Web", "UI", "CodeCrafter"
],
"repository": "CodeCrafter-TL/WebSwift",
"homepage": "https://codecrafter-tl.github.io/WebSwift",
"author": "CodeCrafter-TL",
"main": "./dist/main.js",
"scripts": {
"build": "tsc\nrollup --config rollup.config.mjs\ncp -r dist/webswift.js docs/overrides/js",
"docs": "mkdocs build\ncp -r assets site/docs\ncp -r assets site/docs/checkbox",
"push": "git add .\ngit commit -m \"Update\"\ngit push\ncd site\ngit add .\ngit commit -m \"Update docs\"\ngit push origin docs"
},
"dependencies": {
"@rollup/plugin-terser": "^0.4.4",
"rollup": "^4.40.1",
"terser": "^5.39.0"
}
}