dnssd-advertise 0.1.0 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +16 -17
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dnssd-advertise",
3
- "version": "0.1.0",
3
+ "version": "1.0.0",
4
4
  "description": "A Bonjour DNS-SD service announcer via mDNS on UDP",
5
5
  "author": "Phil Pluckthun <phil@kitten.sh>",
6
6
  "source": "./src/index.ts",
@@ -13,20 +13,6 @@
13
13
  "CHANGELOG.md",
14
14
  "dist/"
15
15
  ],
16
- "scripts": {
17
- "test": "vitest test",
18
- "test:run": "vitest test --run",
19
- "prebench": "pnpm run build",
20
- "bench": "vitest bench",
21
- "build": "rollup -c ./scripts/rollup.config.mjs",
22
- "postbuild": "tsc --lib esnext,dom,dom.iterable --target esnext --module nodenext --moduleResolution nodenext --noEmit ./dist/dnssd-advertise.d.ts",
23
- "check": "tsc --noEmit",
24
- "clean": "rimraf dist node_modules/.cache",
25
- "prepublishOnly": "run-s clean build check test:run",
26
- "prepare": "node ./scripts/prepare.js || true",
27
- "changeset:version": "changeset version && pnpm install --lockfile-only",
28
- "changeset:publish": "changeset publish"
29
- },
30
16
  "exports": {
31
17
  ".": {
32
18
  "types": "./dist/dnssd-advertise.d.ts",
@@ -80,6 +66,19 @@
80
66
  "vitest": "^4.0.10"
81
67
  },
82
68
  "publishConfig": {
83
- "access": "public"
69
+ "access": "public",
70
+ "provenance": true
71
+ },
72
+ "scripts": {
73
+ "test": "vitest test",
74
+ "test:run": "vitest test --run",
75
+ "prebench": "pnpm run build",
76
+ "bench": "vitest bench",
77
+ "build": "rollup -c ./scripts/rollup.config.mjs",
78
+ "postbuild": "tsc --lib esnext,dom,dom.iterable --target esnext --module nodenext --moduleResolution nodenext --noEmit ./dist/dnssd-advertise.d.ts",
79
+ "check": "tsc --noEmit",
80
+ "clean": "rimraf dist node_modules/.cache",
81
+ "changeset:version": "changeset version && pnpm install --lockfile-only",
82
+ "changeset:publish": "changeset publish"
84
83
  }
85
- }
84
+ }