-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.77 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.77 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@extension.dev/urls",
"description": "One source of truth for cross-app origins and route paths across the extension.dev fleet (www, console, templates, themes, intelligence, inspect, preview, userland) and the public MCP. Pure path builders plus an env-driven origin resolver with local-dev derivation.",
"version": "0.4.0",
"type": "module",
"license": "Apache-2.0",
"author": {
"name": "Cezar Augusto",
"email": "hello@extension.dev",
"url": "https://cezaraugusto.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/extensiondev/urls.git"
},
"bugs": {
"url": "https://github.com/extensiondev/urls/issues"
},
"homepage": "https://github.com/extensiondev/urls#readme",
"keywords": [
"extension.dev",
"urls",
"origins",
"routing"
],
"engines": {
"node": ">=20.18"
},
"packageManager": "pnpm@10.19.0",
"exports": {
".": "./src/index.ts",
"./paths": "./src/paths.ts",
"./origins": "./src/origins.ts",
"./userland": "./src/userland.ts",
"./reserved-slugs": "./src/reserved-slugs.ts"
},
"main": "./src/index.ts",
"types": "./src/index.ts",
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE",
"NOTICE"
],
"scripts": {
"clean": "rm -rf dist",
"compile": "rslib build",
"build": "pnpm run compile",
"watch": "rslib build --watch",
"lint": "eslint .",
"typecheck": "tsc --noEmit -p tsconfig.json",
"check-types": "pnpm run typecheck",
"test": "vitest run",
"prepublishOnly": "pnpm run test && pnpm run compile"
},
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.cjs",
"require": "./dist/index.cjs"
},
"./paths": {
"types": "./dist/paths.d.ts",
"import": "./dist/paths.cjs",
"require": "./dist/paths.cjs"
},
"./origins": {
"types": "./dist/origins.d.ts",
"import": "./dist/origins.cjs",
"require": "./dist/origins.cjs"
},
"./userland": {
"types": "./dist/userland.d.ts",
"import": "./dist/userland.cjs",
"require": "./dist/userland.cjs"
},
"./reserved-slugs": {
"types": "./dist/reserved-slugs.d.ts",
"import": "./dist/reserved-slugs.cjs",
"require": "./dist/reserved-slugs.cjs"
}
}
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@rslib/core": "^0.9.2",
"@types/node": "^26.1.1",
"eslint": "^10.7.0",
"globals": "^17.7.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.64.0",
"vitest": "^3.2.2"
}
}