-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 911 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 911 Bytes
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
{
"name": "@hyperbook/types",
"version": "0.23.0",
"author": "Mike Barkmin",
"homepage": "https://github.com/openpatch/hyperbook#readme",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openpatch/hyperbook.git",
"directory": "packages/types"
},
"bugs": {
"url": "https://github.com/openpatch/hyperbook/issues"
},
"scripts": {
"version": "pnpm build",
"lint": "tsc --noEmit",
"build": "rimraf dist && pnpm build:pkg && pnpm build:types",
"build:pkg": "node ../../scripts/build.mjs",
"build:types": "tsc --project tsconfig.build.json --declaration --emitDeclarationOnly"
},
"dependencies": {}
}