-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 1.9 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
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
{
"name": "meta-context",
"description": "Primitive and flexible state management for React",
"type": "module",
"private": false,
"version": "1.0.11",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./shortcut": {
"require": "./dist/shortcut.cjs",
"import": "./dist/shortcut.js"
},
"./collect-event": {
"require": "./dist/collect-event.cjs",
"import": "./dist/collect-event.js"
}
},
"tsup": {
"format": [
"esm",
"cjs"
],
"entry": {
"index": "./src/index.ts",
"shortcut": "./src/shortcut/index.tsx",
"collect-event": "./src/collect-event/index.tsx"
},
"external": [
"meta-context/collect-event",
"meta-context/shortcut"
],
"splitting": false,
"minify": true,
"clean": true,
"dts": true
},
"files": [
"src",
"dist",
"LICENSE",
"README.md",
"package.json",
"tsconfig.json",
"package-lock.json"
],
"sideEffects": false,
"scripts": {
"write": "prettier --write '**/*.{tsx,ts,md,json}'",
"build": "tsup"
},
"engines": {
"node": ">=12.20.0"
},
"prettier": {
"singleQuote": true,
"printWidth": 120,
"arrowParens": "avoid"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lihz6/meta-context.git"
},
"keywords": [
"react",
"state",
"manager",
"management",
"recoil",
"store"
],
"author": "Li Hongzhang",
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/lihz6/meta-context/issues"
},
"homepage": "https://github.com/lihz6/meta-context",
"devDependencies": {
"@types/node": "^20.16.5",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"prettier": "^3.3.3",
"tsup": "^8.2.4"
},
"peerDependencies": {
"@types/react": ">=17.0.0",
"react": ">=17.0.0"
}
}