-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.47 KB
/
package.json
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
{
"name": "@badrap/libapp",
"version": "0.7.6",
"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": ">=18"
},
"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": {
"lint": "eslint --max-warnings 0 .",
"typecheck": "tsc --skipLibCheck --noEmit",
"build": "rm -rf dist/* && tsc",
"prepack": "npm run build",
"changeset": "changeset",
"bump": "changeset version",
"release": "npm run build && changeset publish"
},
"author": "Joachim Viide <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/badrap/libapp/issues"
},
"homepage": "https://github.com/badrap/libapp#readme",
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.10",
"@eslint/js": "^9.15.0",
"@types/node": "^22.10.7",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.4.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
},
"dependencies": {
"@badrap/valita": "^0.4.0"
}
}