-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.23 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
{
"name": "@codythatsme/clicksend-sdk",
"version": "1.1.9",
"type": "module",
"scripts": {
"dev": "bun src/index.ts",
"bump": "npm version patch --no-git-tag-version",
"build": "tsc && tsup",
"lint": "eslint src --ext .ts,.tsx",
"format": "prettier --write src",
"prepublish": "npm run bump && bun run build",
"publish": "npm publish --access public",
"postpublish": "rm -rf dist"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"devDependencies": {
"@types/bun": "latest",
"tsup": "^8.2.4",
"@types/eslint": "^8.56.2",
"@types/node": "^20.8.3",
"eslint-config-prettier": "^9.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"eslint": "^8",
"vite": "^5.3.3",
"vite-plugin-dts": "^3.5.1",
"glob": "^10.3.10",
"prettier": "^3.0.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"ky": "^1.7.0"
}
}