-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.59 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.59 KB
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
{
"name": "@axboot/stores",
"version": "1.2.1",
"main": "dist/commonjs/index.js",
"module": "dist/esm/index.js",
"jsnext:main": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"repository": "https://github.com/axisj/axboot-stores",
"license": "MIT",
"scripts": {
"lint": "next lint",
"build": "npm run build:library",
"build:es5": "rimraf ./dist/commonjs && tsc --p tsconfigs/tsconfig.es5.json",
"build:es6": "rimraf ./dist/es6 && tsc --p tsconfigs/tsconfig.es6.json",
"build:esm": "rimraf ./dist/esm && tsc --p tsconfigs/tsconfig.esm.json",
"build:library": "npm run build:es5 && npm run build:es6 && npm run build:esm",
"prepublishOnly": "npm run build:library",
"smoke:react19": "npm run build && node ./smoke/react19/run-smoke.cjs"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@noble/ed25519": "^3.0.0",
"@noble/hashes": "^2.0.1",
"dayjs": "^1.11.13",
"lodash": "^4.17.21",
"lzutf8": "^0.6.3",
"zustand": "^4.5.7"
},
"peerDependencies": {
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"@types/node": "^25.0.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/uuid": "^9.0.0",
"eslint": "8.22.0",
"eslint-config-next": "12.2.5",
"ncp": "^2.0.0",
"prettier": "^2.7.1",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"typescript": "^5.2.2",
"uuid": "^9.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}