-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
85 lines (85 loc) · 2.1 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "coolshapes-react",
"version": "1.0.1",
"description": "A react component library for coolshapes with little grainy gradients.",
"keywords": [
"coolshapes",
"shapes",
"abstract",
"svg",
"vector",
"avatar",
"illustration",
"graphics",
"placeholder"
],
"main": "dist/cjs/coolshapes.js",
"main:umd": "dist/umd/coolshapes.js",
"module": "dist/esm/coolshapes.js",
"unpkg": "dist/umd/coolshapes.js",
"typings": "dist/index.d.ts",
"type": "module",
"files": [
"./dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "npm run clean && rollup --config",
"test": "vitest --config ./vitest.config.mjs run",
"clean": "rm -rf dist",
"reformat": "prettier . --write"
},
"author": {
"name": "realvjy",
"email": "[email protected]",
"twitter": "https://x.com/realvjy",
"url": "https://vjy.me"
},
"contributors": [
{
"name": "0xgreenapple",
"url": "https://greenapple.one",
"email": "[email protected]"
}
],
"license": "MIT",
"homepage": "https://www.coolshap.es/",
"repository": {
"type": "git",
"url": "https://github.com/realvjy/coolshapes-react"
},
"bugs": {
"url": "https://github.com/realvjy/coolshapes-react/issues",
"email": "[email protected]"
},
"engines": {
"node": ">=14.0.0"
},
"peerDependencies": {
"react": ">=16.8",
"react-dom": ">=16.8"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@testing-library/react": "^14.2.1",
"@types/react": "^18.2.58",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.33.2",
"jsdom": "^24.0.0",
"prettier": "3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^4.12.0",
"rollup-plugin-dts": "^6.1.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
}
}