-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.79 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
86
87
88
89
90
91
92
93
{
"name": "react-svg-gps",
"version": "2.0.0",
"description": "Utility for declarative coordination of SVG element positions.",
"keywords": [
"react",
"svg",
"element",
"position",
"connect",
"dom",
"ui"
],
"license": "MIT",
"author": "Kaylee Mavis <[email protected]>",
"engines": {
"node": "^20"
},
"files": [
"lib/**/*"
],
"main": "./dist/index.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/kayleecodes1/react-svg-gps.git"
},
"homepage": "https://github.com/kayleecodes1/react-svg-gps",
"bugs": {
"url": "https://github.com/kayleecodes1/react-svg-gps/issues"
},
"scripts": {
"test": "jest",
"coveralls": "cat coverage/lcov.info | coveralls",
"lint": "eslint",
"storybook": "storybook dev",
"build": "rollup -c",
"build:storybook": "storybook build -o dist-storybook &&touch dist-storybook/.nojekyll",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run lint"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@storybook/addon-essentials": "^8.1.10",
"@storybook/react": "^8.1.10",
"@storybook/react-vite": "^8.1.10",
"@svgdotjs/svg.js": "^3.2.3",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.3",
"@types/svgdom": "^0.1.2",
"@typescript-eslint/parser": "^7.13.1",
"coveralls": "^3.1.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.3",
"globals": "^15.6.0",
"i": "^0.3.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^4.18.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript-paths": "^1.5.0",
"storybook": "^8.1.10",
"svgdom": "^0.0.18",
"ts-jest": "^29.1.5",
"typescript": "^5.4.5",
"typescript-eslint": "^7.13.1",
"vite-tsconfig-paths": "^4.3.2"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.18.0"
}
}