This repository has been archived by the owner on Sep 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 1.73 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
{
"name": "@tenoxui/core",
"version": "1.0.4",
"description": "Core component of tenoxui.",
"main": "./dist/js/tenoxui.js",
"style": "./dist/css/tenoxui.css",
"module": "./dist/js/tenoxui.esm.js",
"types": "./dist/js/tenoxui.esm.d.ts",
"files": ["dist/*", "package.json", "README.md", "LICENSE"],
"scripts": {
"dev": "tsc --watch",
"build-js": "uglifyjs ./src/js/tenoxui.js -c -m toplevel -o dist/js/tenoxui.min.js --source-map \"url='tenoxui.min.js.map'\" --comments \"/^!/\" --keep-fnames && uglifyjs src/js/tenoxui.js --beautify -o dist/js/tenoxui.js --source-map \"url='tenoxui.js.map'\" --comments \"/^!/\" && cp src/js/tenoxui.d.ts src/js/tenoxui.js.map dist/js && prettier -w dist/js/tenoxui.js dist/js/tenoxui.d.ts",
"build-esm": "uglifyjs ./src/js/tenoxui.esm.js -c -m toplevel -o dist/js/tenoxui.esm.min.js --source-map \"url='tenoxui.esm.min.js.map'\" --comments \"/^!/\" --keep-fnames && uglifyjs ./src/js/tenoxui.esm.js --beautify -o dist/js/tenoxui.esm.js --source-map \"url='tenoxui.esm.js.map'\" --comments \"/^!/\" && cp src/js/tenoxui.esm.d.ts src/js/tenoxui.esm.js.map dist/js && prettier -w dist/js/tenoxui.esm.js dist/js/tenoxui.esm.d.ts",
"build": "tsc && npm run build-js && npm run build-esm && echo '\\033[92m Have Fun :D'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tenoxui/core.git"
},
"keywords": ["framework", "css", "css-in-js", "utility-first"],
"author": "NOuSantx <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tenoxui/core/issues"
},
"homepage": "https://tenoxui.web.app",
"devDependencies": {
"clean-css-cli": "^5.6.3",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"uglify-js": "^3.18.0"
}
}