-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.82 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
{
"name": "superctx",
"description": "An enhanced React Context API with better TypeScript support, error handling, and utilities for multiple contexts.",
"keywords": [
"context",
"react",
"typescript"
],
"license": "MIT",
"author": "Alberto Harka",
"repository": {
"type": "git",
"url": "https://github.com/sadkebab/superctx"
},
"files": [
"dist",
"README.md"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsup",
"prepare:dist": "node ./scripts/prepare-dist-package.mjs",
"version:from-tag": "node ./scripts/version-from-tag.mjs && pnpm format",
"publish:dist": "pnpm publish dist --no-git-checks --access public",
"prepublish": "pnpm typecheck && pnpm lint && pnpm format:check && pnpm test && pnpm build && pnpm prepare:dist",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "oxlint --config ./.oxlintrc.json .",
"lint:fix": "oxlint --config ./.oxlintrc.json --fix .",
"format": "oxfmt --config ./.oxfmt.json --ignore-path ./.prettierignore .",
"format:check": "oxfmt --check --config ./.oxfmt.json --ignore-path ./.prettierignore ."
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"jsdom": "^28.1.0",
"oxfmt": "^0.46.0",
"oxlint": "^1.61.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"peerDependencies": {
"react": "^19.0.0"
},
"packageManager": "pnpm@10.9.0"
}