feat: styles package (#1074)

This commit is contained in:
Mo
2022-06-07 13:49:00 -05:00
committed by GitHub
parent 6d0b6e9018
commit 31003276b7
40 changed files with 3346 additions and 119 deletions

View File

@@ -0,0 +1,24 @@
{
"name": "@standardnotes/styles",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "webpack --mode='production' && yarn run tsc",
"start": "webpack --watch --mode='development'",
"lint": "prettier --check *.js"
},
"dependencies": {},
"devDependencies": {
"css-loader": "~6.6.0",
"mini-css-extract-plugin": "^2.5.3",
"node-sass": "^7.0.1",
"sass-loader": "^12.6.0",
"style-loader": "~3.3.1",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2"
}
}