-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.04 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
{
"name": "ixbroadcastr",
"version": "1.0.5",
"description": "Simple broadcast channel",
"type": "module",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flamrdevs/ixbroadcastr.git"
},
"author": "flamrdevs",
"license": "MIT",
"bugs": {
"url": "https://github.com/flamrdevs/ixbroadcastr/issues"
},
"scripts": {
"test": "vitest run",
"build": "vite build",
"release": "pnpm test && pnpm build && release-it --only-version"
},
"devDependencies": {
"@types/node": "^20.4.5",
"release-it": "^16.1.3",
"typescript": "^5.1.6",
"vite": "^4.4.7",
"vite-plugin-dts": "^3.4.0",
"vitest": "^0.33.0"
}
}