This repository has been archived by the owner on Oct 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
84 lines (84 loc) · 2.3 KB
/
package.json
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "stocked",
"description": "Tiny state management library for react.",
"version": "1.0.0-beta.33",
"main": "dist/index.js",
"module": "dist/stocked.esm.js",
"repository": "ArtiomTr/stocked",
"author": "Artiom Tretjakovas",
"license": "MIT",
"scripts": {
"analyze": "size-limit --why",
"build": "aqu build",
"build:docs": "vitepress build new-docs",
"dev:docs": "vitepress dev new-docs",
"format": "syncpack format && prettier --write \"**/*.{ts,tsx,cjs,mjs,js,jsx,json,yml,yaml,clean-publish}\"",
"lint": "eslint .",
"lint:config": "pnpm lint --write-file",
"prepublishOnly": "aqu build",
"serve:docs": "vitepress serve new-docs",
"size": "size-limit",
"start": "aqu watch",
"test": "jest --passWithNoTests",
"test:coverage": "pnpm run test --silent --ci --coverage --json --outputFile=report.json",
"test:lcov": "pnpm run test --silent --ci --coverage",
"test:watch": "pnpm run test --watch",
"bump": "changeset version && pnpm i --lockfile-only",
"release": "pnpm build && changeset tag && pnpm publish"
},
"dependencies": {
"lodash": "^4.17.20",
"lodash-es": "^4.17.15",
"pxth": "^0.7.0",
"tiny-invariant": "^1.1.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@size-limit/preset-small-lib": "^4.6.2",
"@testing-library/react": "^14.0.0",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.162",
"@types/react": "18.0.23",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"aqu": "^0.3.2",
"configs": "github:fracht/configs",
"danger": "^11.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.0.6",
"jest-watch-typeahead": "^1.0.0",
"prettier": "^2.8.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"size-limit": "^4.6.2",
"syncpack": "^8.4.11",
"ts-jest": "^27.0.7",
"tslib": "^2.3.1",
"typescript": "^4.5.5",
"vitepress": "^1.0.0-alpha.23"
},
"peerDependencies": {
"react": ">=16"
},
"engines": {
"node": ">=10"
},
"files": [
"dist"
],
"size-limit": [
{
"path": "dist/stocked.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/stocked.esm.js",
"limit": "10 KB"
}
],
"typings": "dist/stocked.d.ts",
"packageManager": "[email protected]"
}