-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.24 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.24 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
64
65
66
67
68
69
{
"name": "react-elmish",
"version": "3.0.0",
"description": "Elmish for React using Typescript",
"author": "atheck",
"license": "MIT",
"scripts": {
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly --project ./tsconfig.build.json",
"build:js": "babel src --out-dir dist --extensions \".ts,.tsx\" --ignore \"./**/*.spec.ts\",\"./**/*.spec.tsx\" --source-maps inline",
"test": "jest --coverage",
"test:watch": "jest --watch --coverage",
"lint": "biome lint src --max-diagnostics 200 && npx eslint src",
"update": "npx -y npm-check-updates -i --install never && npx -y npm-check-updates -i --target minor --install never && npx -y npm-check-updates -i --target patch --install never && npm update && npm audit signatures",
"semantic-release": "semantic-release"
},
"dependencies": {
"immer": "11.1.4"
},
"peerDependencies": {
"react": ">=16.8.0 <20"
},
"devDependencies": {
"@babel/cli": "7.28.6",
"@babel/core": "7.29.0",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/preset-env": "7.29.0",
"@babel/preset-react": "7.28.5",
"@babel/preset-typescript": "7.28.5",
"@biomejs/biome": "2.4.7",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@types/jest": "30.0.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"eslint": "9.39.4",
"eslint-config-heck": "9.2.0",
"jest": "30.3.0",
"jest-environment-jsdom": "30.3.0",
"semantic-release": "25.0.3",
"ts-jest": "29.4.6",
"tslib": "2.8.1",
"typescript": "5.9.3"
},
"homepage": "https://github.com/atheck/react-elmish",
"repository": {
"type": "git",
"url": "git+https://github.com/atheck/react-elmish.git"
},
"keywords": [
"react",
"elm",
"elmish",
"state management"
],
"files": [
"dist/**/*"
],
"exports": {
".": "./dist/index.js",
"./testing": "./dist/testing/index.js",
"./extend": "./dist/extend/index.js",
"./immutable": "./dist/immutable/index.js",
"./immutable/testing": "./dist/immutable/testing/index.js",
"./immutable/extend": "./dist/immutable/extend/index.js"
},
"types": "dist/index.d.ts"
}