-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.49 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.49 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
{
"name": "@scaflo/node-react-wrapper",
"version": "0.1.0-alpha.8",
"type": "module",
"module": "dist/index.js",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./styles.css": "./dist/index.css"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "cross-env NODE_ENV=development tsup --watch",
"clean": "rm -rf dist",
"lint": "eslint . --fix",
"format": "prettier --write .",
"new:publish": "pnpm build && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scaflo/node-react-wrapper.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/scaflo/node-react-wrapper/issues"
},
"homepage": "https://github.com/scaflo/node-react-wrapper#readme",
"devDependencies": {
"@tailwindcss/postcss": "^4.1.11",
"@types/node": "^24.0.13",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.3",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"cross-env": "^7.0.3",
"node": "^24.4.0",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tsup": "^8.5.0",
"typescript": "^5.8.3"
},
"peerDependencies": {
"react": "^18 || ^19",
"react-dom": "^18 || ^19"
},
"packageManager": "pnpm@10.13.1"
}