-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.46 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
60
61
62
63
{
"name": "react-atomic-context",
"type": "module",
"version": "3.0.0-2",
"description": "Optimized React context",
"author": "tingyuan",
"license": "MIT",
"homepage": "https://github.com/lovetingyuan/react-atomic-context#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/lovetingyuan/react-atomic-context.git"
},
"bugs": {
"url": "https://github.com/lovetingyuan/react-atomic-context/issues"
},
"keywords": [
"react",
"context",
"atomic",
"atom",
"state",
"store"
],
"sideEffects": false,
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"files": [
"dist"
],
"directories": {
"example": "example",
"lib": "src",
"test": "tests"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"test": "tsx tests",
"build": "tsup src/index.ts --dts --format esm",
"dev": "npx -y live-server .",
"prepublishOnly": "npm run lint && npm run build && npm test",
"pub": "np --no-tests",
"lint": "npx -y oxlint@latest src tests"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@testing-library/react": "^16.0.1",
"@types/node": "^22.17.0",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"global-jsdom": "26.0.0",
"np": "^10.2.0",
"tsup": "^8.5.0",
"tsx": "^4.20.3",
"typescript": "^5.2.2"
}
}