-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 810 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 810 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
30
31
32
33
{
"name": "@intzaaa/pureact",
"type": "module",
"private": false,
"version": "3.1.1",
"license": "AGPL-3.0-only",
"packageManager": "pnpm@10.8.1",
"devDependencies": {
"@types/react": "^19.1.2",
"prettier": "^3.5.3",
"react": "18.3.1",
"react-dom": "18",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"typescript": "^5.8.3"
},
"files": [
"dist",
"src"
],
"exports": {
"./examples": {
"import": "./src/examples/index.ts"
},
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsup ./src/index.ts --external react --dts --format esm --target es2021 --clean --out-dir dist"
}
}