-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1001 Bytes
/
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
{
"name": "@maceblitzkrieg/mace-artworks",
"repository": {
"type": "git",
"url": "git@github.com:kushadige/mace-artworks.git"
},
"version": "0.0.1",
"description": "Various CSS Artworks",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist/ && npm run build:webpack",
"build:webpack": "webpack"
},
"keywords": [],
"author": "Oguzhan Kuslar",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.14.1",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"css-loader": "^6.7.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.58.3",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"publishConfig": {
"access": "public"
}
}