source: node_modules/immer/package.json@ a762898

Last change on this file since a762898 was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago

Added visualizations

  • Property mode set to 100644
File size: 2.8 KB
Line 
1{
2 "name": "immer",
3 "version": "10.2.0",
4 "description": "Create your next immutable state by mutating the current one",
5 "main": "./dist/cjs/index.js",
6 "module": "./dist/immer.legacy-esm.js",
7 "exports": {
8 "./package.json": "./package.json",
9 ".": {
10 "react-native": {
11 "types": "./dist/immer.d.ts",
12 "default": "./dist/immer.legacy-esm.js"
13 },
14 "import": {
15 "types": "./dist/immer.d.ts",
16 "default": "./dist/immer.mjs"
17 },
18 "require": {
19 "types": "./dist/immer.d.ts",
20 "default": "./dist/cjs/index.js"
21 }
22 }
23 },
24 "jsnext:main": "dist/immer.mjs",
25 "source": "src/immer.ts",
26 "types": "./dist/immer.d.ts",
27 "sideEffects": false,
28 "scripts": {
29 "pretest": "yarn build",
30 "test": "vitest run && yarn test:build && yarn test:flow",
31 "test:perf": "cd __performance_tests__ && node add-data.mjs && node todo.mjs && node incremental.mjs && node large-obj.mjs",
32 "test:flow": "yarn flow check __tests__/flow",
33 "test:build": "vitest run --config vitest.config.build.ts",
34 "test:src": "vitest run",
35 "watch": "vitest",
36 "coverage": "vitest run --coverage",
37 "coveralls": "vitest run --coverage && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls && rm -rf ./coverage",
38 "build": "tsup",
39 "publish-docs": "cd website && GIT_USER=mweststrate USE_SSH=true yarn docusaurus deploy",
40 "start": "cd website && yarn start",
41 "test:size": "yarn build && yarn import-size --report . produce enableMapSet enablePatches",
42 "test:sizequick": "yarn build && yarn import-size . produce"
43 },
44 "husky": {
45 "hooks": {
46 "pre-commit": "pretty-quick --staged"
47 }
48 },
49 "repository": {
50 "type": "git",
51 "url": "https://github.com/immerjs/immer.git"
52 },
53 "keywords": [
54 "immutable",
55 "mutable",
56 "copy-on-write"
57 ],
58 "author": "Michel Weststrate <info@michel.codes>",
59 "license": "MIT",
60 "funding": {
61 "type": "opencollective",
62 "url": "https://opencollective.com/immer"
63 },
64 "bugs": {
65 "url": "https://github.com/immerjs/immer/issues"
66 },
67 "homepage": "https://github.com/immerjs/immer#readme",
68 "files": [
69 "dist",
70 "compat",
71 "src"
72 ],
73 "devDependencies": {
74 "@babel/core": "^7.21.3",
75 "@types/node": "^24.3.1",
76 "@vitest/coverage-v8": "2.1.9",
77 "coveralls": "^3.0.0",
78 "cpx2": "^3.0.0",
79 "deep-freeze": "^0.0.1",
80 "flow-bin": "^0.123.0",
81 "husky": "^1.2.0",
82 "immutable": "^3.8.2",
83 "import-size": "^1.0.2",
84 "lodash": "^4.17.4",
85 "lodash.clonedeep": "^4.5.0",
86 "prettier": "1.19.1",
87 "pretty-quick": "^1.8.0",
88 "redux": "^4.0.5",
89 "rimraf": "^2.6.2",
90 "seamless-immutable": "^7.1.3",
91 "semantic-release": "^17.0.2",
92 "tsup": "^6.7.0",
93 "typescript": "^5.0.2",
94 "vite": "^5.4.0",
95 "vitest": "^2.0.0"
96 }
97}
Note: See TracBrowser for help on using the repository browser.