generated from StyleShit/create-typescript-package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.42 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
{
"name": "zusdux",
"description": "The forbidden love child of Redux and Zustand",
"version": "0.1.3",
"author": "StyleShit",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/StyleShit/zusdux"
},
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"README.md",
"CHANGELOG.md",
"/dist",
"/src",
"!**/__tests__"
],
"scripts": {
"test": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "concurrently -n eslint,tsc -c magenta,green \"eslint ./\" \"tsc\"",
"format": "prettier --write ./",
"format:check": "prettier --check ./",
"build": "tsup src/index.ts --format cjs,esm --dts",
"release": "npm run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@eslint/js": "^9.9.0",
"@testing-library/react": "^16.0.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.4.1",
"@types/react": "^18.3.3",
"@vitest/coverage-v8": "^2.0.5",
"concurrently": "^8.2.2",
"eslint": "^9.9.0",
"globals": "^15.9.0",
"jsdom": "^24.1.1",
"prettier": "^3.3.3",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"typescript-eslint": "^8.1.0",
"vitest": "^2.0.5"
},
"peerDependencies": {
"react": "^18.3.1"
}
}