-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.28 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.28 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
{
"name": "@badrap/libapp",
"version": "0.10.3",
"description": "TypeScript helpers for creating Badrap apps",
"homepage": "https://github.com/badrap/libapp#readme",
"bugs": {
"url": "https://github.com/badrap/libapp/issues"
},
"license": "MIT",
"author": "Joachim Viide <jviide@iki.fi>",
"repository": {
"type": "git",
"url": "git+https://github.com/badrap/libapp.git"
},
"type": "module",
"main": "dist/index.js",
"exports": {
"./api": "./dist/api/index.js",
"./ui": "./dist/ui/index.js",
"./ui/experimental": "./dist/ui/experimental/index.js",
"./jsx-runtime": "./dist/jsx-runtime.js",
"./jsx-dev-runtime": "./dist/jsx-dev-runtime.js"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"fix": "oxfmt && oxlint --fix",
"check": "oxfmt --check && oxlint",
"build": "rm -rf dist/* && tsc",
"changeset": "changeset",
"bump": "changeset version",
"tag": "changeset tag"
},
"dependencies": {
"@badrap/valita": "^0.4.6"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"oxlint-tsgolint": "^0.17.1",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=20"
}
}