-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.33 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
{
"name": "@josephmark/createstyle",
"version": "1.1.4",
"description": "A simple utility for creating React components with pre-determined classes",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"exports": {
".": {
"require": "./lib/cjs/index.js",
"import": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts"
}
},
"scripts": {
"test": "eslint --no-ignore ./src/* && tsc --noEmit",
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
"prepublishOnly": "npm run -s build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/whoisjosephmark/createStyle.git"
},
"keywords": [
"react",
"tailwind",
"typescript"
],
"files": [
"lib/**/*.js",
"lib/**/*.d.ts",
"lib/**/*.map"
],
"author": "@floatingdino",
"license": "MIT",
"bugs": {
"url": "https://github.com/whoisjosephmark/createStyle/issues"
},
"homepage": "https://github.com/whoisjosephmark/createStyle#readme",
"devDependencies": {
"@josephmark/eslint-config-react": "^1.1.0",
"eslint": "^9.4.0",
"prettier": "^3.3.1",
"typescript": "^5.5.3"
},
"peerDependencies": {
"@types/react": "^18.3.3",
"react": "^18.3.1"
}
}