-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.51 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.51 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
{
"scripts": {
"build": "zile",
"changeset:publish": "zile publish:prepare && changeset publish && zile publish:post",
"changeset:version": "changeset version",
"check": "oxlint --fix --ignore-pattern package.json && oxfmt",
"check:types": "tsc -b",
"dev": "zile dev",
"validate-skill": "uvx --from skills-ref agentskills validate skills/webauthx",
"test": "vitest"
},
"devDependencies": {
"@changesets/cli": "catalog:",
"@types/node": "catalog:",
"@vitest/browser-playwright": "catalog:",
"oxfmt": "catalog:",
"oxlint": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:",
"zile": "catalog:"
},
"packageManager": "pnpm@10.29.3",
"[!start-pkg]": "",
"name": "webauthx",
"type": "module",
"version": "0.1.0",
"main": "./dist/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wevm/webauthx"
},
"files": [
"dist",
"src"
],
"dependencies": {
"ox": "~0.14.6"
},
"sideEffects": false,
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"src": "./src/index.ts",
"default": "./dist/index.js"
},
"./client": {
"types": "./dist/client/index.d.ts",
"src": "./src/client/index.ts",
"default": "./dist/client/index.js"
},
"./server": {
"types": "./dist/server/index.d.ts",
"src": "./src/server/index.ts",
"default": "./dist/server/index.js"
}
}
}