-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.8 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 2.8 KB
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
94
95
96
97
98
99
100
101
102
103
{
"name": "@wethegit/react-marquee",
"version": "3.0.0",
"description": "",
"files": [
"dist"
],
"style": "dist/style.css",
"css": "dist/style.css",
"type": "module",
"main": "./dist/react-marquee.umd.cjs",
"module": "./dist/react-marquee.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/react-marquee.js",
"require": "./dist/react-marquee.umd.cjs",
"types": "./dist/index.d.ts"
},
"./style.css": "./dist/style.css"
},
"scripts": {
"start": "vite",
"build": "npm run lint:scripts && npm run lint:styles && vite build",
"changeset": "changeset",
"version": "changeset version",
"release": "npm run build && changeset publish",
"lint:scripts": "eslint --fix ./src",
"lint:styles": "stylelint src/**/*.{css,scss}",
"lint": "npm run lint:scripts && npm run lint:styles",
"prepare": "husky"
},
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix",
"*.{css,scss}": "stylelint --fix",
"*": "prettier -w -u"
},
"keywords": [
"react",
"marquee",
"carousel",
"infinite"
],
"homepage": "https://github.com/wethegit/react-marquee",
"repository": {
"type": "git",
"url": "https://github.com/wethegit/react-marquee"
},
"bugs": {
"url": "https://github.com/wethegit/react-marquee/issues"
},
"author": "Andrew Rubin <andrew@wethecollective.com> (https://wethecollective.com)",
"license": "MIT",
"devDependencies": {
"@eslint/compat": "^1.2.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@types/node": "~20.17.24",
"@types/react": "~18.3.10",
"@types/react-dom": "~18.3.0",
"@typescript-eslint/eslint-plugin": "~8.19.1",
"@typescript-eslint/parser": "~8.19.1",
"@vitejs/plugin-react-swc": "^3.7.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.9",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8.4.23",
"postcss-scss": "^4.0.9",
"prettier": "^3.2.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sass": "^1.62.1",
"stylelint": "^15.6.2",
"stylelint-config-recommended": "^13.0.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^11.1.0",
"stylelint-order": "^6.0.3",
"stylelint-selector-bem-pattern": "^3.0.1",
"typescript": "^5.5.4",
"vite": "^5.2.11",
"vite-plugin-dts": "^4.0.0-beta.2"
},
"peerDependencies": {
"react": "17 - 19",
"react-dom": "17 - 19"
},
"dependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7"
}
}