You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.9 KiB

{
"name": "@extollo/ui",
"version": "0.1.0",
"description": "A set of front-end components for use with Extollo",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "pnpm run lint && rimraf lib && tsc && fse copy --all --dereference --preserveTimestamps --keepExisting=false --quiet --errorOnExist=false src/resources lib/resources && webpack",
"app": "pnpm run build && node lib/index.js",
"prepare": "pnpm run build",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint --fix . --ext .ts",
"serve": "python3 -m http.server",
"watch": "nodemon --watch src --ext ts,css --exec \"pnpm build && pnpm serve\""
},
"files": [
"dist/**/*"
],
"prepare": "pnpm run build",
"postversion": "git push && git push --tags",
"repository": {
"type": "git",
"url": "https://code.garrettmills.dev/extollo/ui"
},
"author": "Garrett Mills <shout@garrettmills.dev>",
"license": "MIT",
"devDependencies": {
"@atao60/fse-cli": "^0.1.7",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"css-loader": "^6.5.1",
"eslint": "^8.2.0",
"nodemon": "^2.0.15",
"style-loader": "^3.3.1",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"@popperjs/core": "^2.10.2",
"@types/rimraf": "^3.0.2",
"@types/uuid": "^8.3.3",
"bootstrap": "^5.1.3",
"dotenv": "^10.0.0",
"mkdirp": "^1.0.4",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.2",
"uuid": "^8.3.2"
},
"extollo": {
"discover": true,
"assets": {
"discover": true,
"basePath": ["dist"]
}
}
}