@plurnk/plurnk-schemes 0.5.0 → 0.6.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 (2) hide show
  1. package/dist/types.d.ts +1 -1
  2. package/package.json +54 -54
package/dist/types.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export type WriterTier = "model" | "client" | "system" | "plugin";
1
+ export type WriterTier = "model" | "client" | "plurnk" | "plugin";
2
2
  export interface SchemeFlagAffinity {
3
3
  readonly excludedInAsk?: boolean;
4
4
  readonly requiresWeb?: boolean;
package/package.json CHANGED
@@ -1,57 +1,57 @@
1
1
  {
2
- "name": "@plurnk/plurnk-schemes",
3
- "version": "0.5.0",
4
- "description": "Framework + contract for the @plurnk/plurnk-schemes-* URI handler family.",
5
- "keywords": [
6
- "plurnk",
7
- "scheme",
8
- "uri"
9
- ],
10
- "homepage": "https://github.com/plurnk/plurnk-schemes#readme",
11
- "bugs": {
12
- "url": "https://github.com/plurnk/plurnk-schemes/issues"
2
+ "name": "@plurnk/plurnk-schemes",
3
+ "version": "0.6.0",
4
+ "description": "Framework + contract for the @plurnk/plurnk-schemes-* URI handler family.",
5
+ "keywords": [
6
+ "plurnk",
7
+ "scheme",
8
+ "uri"
9
+ ],
10
+ "homepage": "https://github.com/plurnk/plurnk-schemes#readme",
11
+ "bugs": {
12
+ "url": "https://github.com/plurnk/plurnk-schemes/issues"
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/plurnk/plurnk-schemes.git"
17
+ },
18
+ "engines": {
19
+ "node": ">=25"
20
+ },
21
+ "license": "MIT",
22
+ "author": "@wikitopian",
23
+ "type": "module",
24
+ "publishConfig": {
25
+ "access": "public"
26
+ },
27
+ "exports": {
28
+ ".": {
29
+ "types": "./dist/index.d.ts",
30
+ "default": "./dist/index.js"
13
31
  },
14
- "repository": {
15
- "type": "git",
16
- "url": "git+https://github.com/plurnk/plurnk-schemes.git"
17
- },
18
- "engines": {
19
- "node": ">=25"
20
- },
21
- "license": "MIT",
22
- "author": "@wikitopian",
23
- "type": "module",
24
- "publishConfig": {
25
- "access": "public"
26
- },
27
- "exports": {
28
- ".": {
29
- "types": "./dist/index.d.ts",
30
- "default": "./dist/index.js"
31
- },
32
- "./package.json": "./package.json"
33
- },
34
- "files": [
35
- "dist/**/*",
36
- "README.md",
37
- "SPEC.md"
38
- ],
39
- "scripts": {
40
- "test:lint": "tsc --noEmit",
41
- "test:unit": "node --test src/**/*.test.ts",
42
- "test": "npm run test:lint && npm run test:unit",
43
- "build:dist": "tsc -p tsconfig.build.json",
44
- "build": "npm run build:dist",
45
- "prepare": "npm run build"
46
- },
47
- "peerDependencies": {
48
- "@plurnk/plurnk-grammar": "0.21.0",
49
- "@plurnk/plurnk-mimetypes": "0.14.0"
50
- },
51
- "devDependencies": {
52
- "@plurnk/plurnk-grammar": "0.21.0",
53
- "@plurnk/plurnk-mimetypes": "0.14.0",
54
- "@types/node": "^25.8.0",
55
- "typescript": "^6.0.3"
56
- }
32
+ "./package.json": "./package.json"
33
+ },
34
+ "files": [
35
+ "dist/**/*",
36
+ "README.md",
37
+ "SPEC.md"
38
+ ],
39
+ "scripts": {
40
+ "test:lint": "tsc --noEmit",
41
+ "test:unit": "node --test src/**/*.test.ts",
42
+ "test": "npm run test:lint && npm run test:unit",
43
+ "build:dist": "tsc -p tsconfig.build.json",
44
+ "build": "npm run build:dist",
45
+ "prepare": "npm run build"
46
+ },
47
+ "peerDependencies": {
48
+ "@plurnk/plurnk-grammar": "0.21.0",
49
+ "@plurnk/plurnk-mimetypes": "0.14.0"
50
+ },
51
+ "devDependencies": {
52
+ "@plurnk/plurnk-grammar": "0.21.0",
53
+ "@plurnk/plurnk-mimetypes": "0.14.0",
54
+ "@types/node": "^25.8.0",
55
+ "typescript": "^6.0.3"
56
+ }
57
57
  }