-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.1 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
{
"name": "@xplato/alexandria",
"version": "1.3.6",
"author": "Tristan Brewster <xplato@infi.im>",
"license": "MIT",
"repository": "https://github.com/xplato/alexandria",
"description": "Lightweight React wrapper of `localStorage` for declarative management of user preferences and settings.",
"keywords": [
"typescript",
"localStorage",
"settings"
],
"main": "dist/index.js",
"module": "dist/index.modern.js",
"source": "src/index.ts",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "microbundle-crl --no-compress --format modern,cjs",
"start": "microbundle-crl watch --no-compress --format modern,cjs",
"publish": "npm publish --access=public",
"reset": "./scripts/reset.sh"
},
"peerDependencies": {
"react": "16 || 17 || 18"
},
"devDependencies": {
"@types/node": "^12.12.38",
"@types/react": "^16.9.27",
"@types/react-dom": "^16.9.7",
"cross-env": "^7.0.2",
"microbundle-crl": "^0.13.10",
"npm-run-all": "^4.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^3.4.1",
"typescript": "^3.7.5"
},
"files": [
"dist"
],
"dependencies": {}
}