-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.44 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
{
"name": "@monoid-dev/use-strings",
"publishConfig": {
"access": "public"
},
"version": "0.0.1",
"type": "module",
"description": "i18n library",
"main": "dist/index.cjs",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"format": "dprint fmt",
"lint": "run-p lint:*",
"lint:format": "dprint check",
"lint:types": "tsc",
"lint:js": "eslint .",
"prepare": "husky install",
"prepublishOnly": "pnpm build",
"test": "vitest"
},
"devDependencies": {
"@types/node": "17.0.21",
"@types/react": "^17.0.40",
"@typescript-eslint/eslint-plugin": "5.13.0",
"@typescript-eslint/parser": "5.13.0",
"dprint": "0.23.0",
"eslint": "8.10.0",
"eslint-config-prettier": "8.5.0",
"husky": "7.0.4",
"nano-staged": "0.6.0",
"npm-run-all": "4.1.5",
"react": "^17.0.2",
"tsup": "5.11.13",
"typescript": "4.6.2",
"vite": "2.8.6",
"vitest": "0.5.9"
},
"sideEffects": false,
"nano-staged": {
"*.{js,ts,md,json,yaml}": "dprint fmt"
},
"tsup": {
"entry": [
"src/index.ts"
],
"format": [
"esm",
"cjs"
],
"dts": {
"resolve": true
},
"splitting": true,
"clean": true
},
"peerDependencies": {
"react": "^17.0.2"
}
}