-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.67 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.67 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
{
"name": "@badrap/libapp",
"type": "module",
"version": "0.10.2",
"description": "TypeScript helpers for creating Badrap apps",
"repository": {
"type": "git",
"url": "git+https://github.com/badrap/libapp.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"engines": {
"node": ">=20"
},
"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"
},
"scripts": {
"fix": "node --run fix:prettier && node --run fix:eslint",
"fix:prettier": "prettier --write --cache .",
"fix:eslint": "eslint --max-warnings=0 --fix --cache --cache-location=.cache/eslint .",
"lint": "node --run lint:prettier && node --run lint:eslint",
"lint:prettier": "prettier --check --cache .",
"lint:eslint": "eslint --max-warnings=0 --cache --cache-location=.cache/eslint .",
"typecheck": "tsc --noEmit",
"build": "rm -rf dist/* && tsc",
"changeset": "changeset",
"bump": "changeset version",
"tag": "changeset tag"
},
"author": "Joachim Viide <jviide@iki.fi>",
"license": "MIT",
"bugs": {
"url": "https://github.com/badrap/libapp/issues"
},
"homepage": "https://github.com/badrap/libapp#readme",
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1"
},
"dependencies": {
"@badrap/valita": "^0.4.6"
}
}