-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 2 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
{
"name": "@mfellner/valtio-factory",
"version": "1.0.1",
"description": "Create and compose valtio state using the factory pattern.",
"author": "Maximilian Fellner <[email protected]>",
"repository": "https://github.com/mfellner/valtio-factory",
"keywords": [
"valtio",
"factory",
"react",
"state",
"proxy",
"store"
],
"license": "MIT",
"source": "lib/index.ts",
"main": "dist/main.js",
"module": "dist/module.mjs",
"types": "dist/types.d.ts",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"engines": {
"node": ">=12.7.0"
},
"files": [
"dist/"
],
"scripts": {
"start": "parcel --dist-dir build example/index.html",
"build": "parcel build",
"clean": "rm -rf dist/ .parcel-cache/",
"test": "jest",
"typecheck": "yarn tsc -p tsconfig.json --noEmit",
"release": "release-it",
"prepare": "husky install",
"reinstall": "rm -rf node_modules yarn.lock && yarn install"
},
"lint-staged": {
".ts": "eslint --fix"
},
"peerDependencies": {
"valtio": ">=1.2.11"
},
"devDependencies": {
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@parcel/packager-ts": "2.7.0",
"@parcel/transformer-typescript-types": "2.7.0",
"@release-it/conventional-changelog": "5.0.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.3.0",
"@types/jest": "28.1.6",
"@types/react": "18.0.16",
"@types/react-dom": "18.0.6",
"@typescript-eslint/eslint-plugin": "5.32.0",
"@typescript-eslint/parser": "5.32.0",
"eslint": "8.21.0",
"eslint-plugin-valtio": "0.5.1",
"husky": "8.0.1",
"jest": "28.1.3",
"jest-environment-jsdom": "28.1.3",
"jest-runner-eslint": "1.0.1",
"lint-staged": "13.0.3",
"parcel": "2.7.0",
"process": "^0.11.10",
"react": "18.2.0",
"react-dom": "18.2.0",
"release-it": "15.2.0",
"ts-jest": "28.0.7",
"typescript": "4.7.4",
"valtio": "1.6.3"
}
}