-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 780 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 780 Bytes
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
{
"name": "react-classed-components",
"version": "19.0.0",
"description": "Heavily inspired by styled-components, I needed something that used basic classNames without having much overhead.",
"keywords": ["react", "styling", "classes"],
"files": ["dist"],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write ."
},
"author": "Marcus Rognes <marcus@rognes.guru>",
"repository": {
"type": "git",
"url": "git+https://github.com/marcusrognes/react-classed-components.git"
},
"license": "ISC",
"peerDependencies": {
"react": "^19.0.0"
},
"devDependencies": {
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"react-dom": "^19.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.8.2"
}
}