This repository has been archived by the owner on Aug 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.4 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@beabee/beabee-common",
"version": "0.21.0",
"description": "Shared code between Beabee projects for Node.js, Deno and the browser",
"type": "module",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.js",
"browser": "./dist/browser/index.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist/"
],
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/types/index.d.cts",
"default": "./dist/cjs/index.cjs"
},
"browser": {
"types": "./dist/types/index.d.ts",
"default": "./dist/browser/index.js"
}
},
"./package.json": "./package.json"
},
"scripts": {
"clear": "deno task clear",
"lint": "deno task lint",
"format": "deno task format",
"test": "deno task test",
"test:deno": "deno task test:deno",
"test:node": "deno task test:node",
"test:types": "deno task test:types",
"test:deno:types": "deno task test:deno:types",
"test:node:types": "tsc --noEmit --emitDeclarationOnly false",
"test:node:esm": "node test/node/import.mjs",
"test:node:cjs": "node test/node/require.cjs",
"build": "deno task build",
"build:node": "deno task build:node",
"build:node:esm": "deno task build:node:esm",
"build:node:cjs": "deno task build:node:cjs",
"build:types": "tsc && echo 'export * from \"./index.ts\";' > dist/types/index.d.cts",
"generate:index": "deno task generate:index",
"sync": "deno task sync",
"prepublishOnly": "npm run build",
"cache": "deno task cache",
"cache:deno": "deno task cache:deno",
"cache:node": "deno task cache:node",
"check": "deno task check",
"check:format": "deno task check:format",
"check:types": "deno task check:types",
"npm:publish:latest": "npm publish --access public --tag latest",
"build:browser": "deno task build:browser"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beabee-communityrm/beabee-common.git"
},
"author": "",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/beabee-communityrm/beabee-common/issues"
},
"homepage": "https://github.com/beabee-communityrm/beabee-common#readme",
"devDependencies": {
"@tsconfig/recommended": "^1.0.3",
"typescript": "^5.4.3"
},
"dependencies": {
"date-fns": "^3.6.0"
}
}