-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.66 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.66 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
{
"name": "react-junco",
"version": "0.1.0",
"description": "A state management library for React",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "bun test",
"test:ci": "bun test --coverage",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"type-check": "tsc --noEmit",
"prepublishOnly": "bun run build && bun run test && bun run lint"
},
"keywords": [
"react",
"state-management",
"typescript"
],
"author": "David Parker (https://github.com/dparker2)",
"license": "MIT",
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@happy-dom/global-registrator": "^20.0.8",
"@testing-library/react": "^16.3.0",
"@types/bun": "latest",
"@types/react": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"typescript": "^5.1.0",
"typescript-eslint": "^8.0.0"
},
"engines": {
"bun": ">=1.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dparker2/react-junco.git"
},
"bugs": {
"url": "https://github.com/dparker2/react-junco/issues"
},
"homepage": "https://github.com/dparker2/react-junco#readme"
}