-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.07 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
{
"name": "@ivbrajkovic/simple-state",
"version": "1.5.1",
"description": "Simple reactive state",
"author": "Ivan Brajković",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/ivbrajkovic/simple-state.git"
},
"bugs": {
"url": "https://github.com/ivbrajkovic/simple-state"
},
"homepage": "https://github.com/ivbrajkovic/simple-state#readme",
"keywords": [
"state",
"simple state",
"simple reactive state"
],
"types": "./lib/types",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"exports": {
".": {
"require": "./lib/cjs/index.js",
"import": "./lib/esm/index.js",
"types": "./lib/types/index.d.ts"
}
},
"scripts": {
"tsc": "tsc",
"lint": "npx eslint . --ext .ts,.tsx",
"build:rollup": "rollup -c rollup.config.ts",
"npm:publish": "npm publish --access public",
"prepare": "husky install"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^13.0.5",
"@tsconfig/recommended": "^1.0.1",
"@types/react": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.22.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-unicorn": "^43.0.2",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.4.1",
"rollup": "^2.58.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"terser": "^5.9.0",
"typescript": "^4.4.4"
},
"peerDependencies": {
"react": ">=16.0",
"react-dom": ">=16.0"
},
"dependencies": {},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{js,jsx,ts,tsx,css,md}": "prettier --write"
}
}