-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.72 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.72 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
57
58
59
60
61
62
63
{
"name": "@eviloma/next-back-store",
"version": "1.1.5",
"main": "./dist/index.js",
"module": "index.ts",
"description": "Next.js component library for easy create back button with save history",
"homepage": "https://github.com/eviloma/next-back-store",
"bugs": {
"url": "https://github.com/eviloma/next-back-store/issues"
},
"license": "MIT",
"author": {
"name": "HighError",
"email": "higherror@eviloma.org",
"url": "https://github.com/higherror"
},
"repository": {
"type": "git",
"url": "https://github.com/Eviloma/next-back-store"
},
"scripts": {
"build": "rimraf dist/ && bun build --target=node --external next --external react ./src/index.ts --outfile=dist/index.js && bun run build:declaration",
"build:declaration": "tsc --emitDeclarationOnly --project tsconfig.types.json",
"postbuild": "rimraf tsconfig.types.tsbuildinfo",
"prepublish": "bun run build",
"publish:npm": "bun prepublish && npm publish --access public",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"ts-check": "tsc",
"prepare": "husky"
},
"type": "module",
"types": "./dist/index.d.ts",
"dependencies": {
"zustand": "^5.0.8"
},
"devDependencies": {
"@biomejs/biome": "^2.2.6",
"@types/node": "^24.9.1",
"@types/react": "^19.2.2",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.5",
"rimraf": "^6.0.1"
},
"peerDependencies": {
"next": "15 || 16",
"react": "19",
"typescript": "^5.8.2"
},
"files": [
"dist"
],
"trustedDependencies": [
"@biomejs/biome",
"sharp"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}