This repository has been archived by the owner on Jul 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (50 loc) · 1.6 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
{
"name": "fire-lib-js",
"version": "0.3.5",
"author": "Sören Meier <[email protected]>",
"type": "module",
"scripts": {
"test": "vitest",
"check": "prettier -c .",
"lint": "eslint ./src",
"build": "tsc",
"watch": "tsc -w"
},
"repository": {
"type": "git",
"url": "https://github.com/fire-lib/fire-js.git"
},
"license": "MIT or Apache-2.0",
"exports": {
"./api/Api": "./dist/api/Api.js",
"./api/ApiError": "./dist/api/ApiError.js",
"./api/Stream": "./dist/api/Stream.js",
"./collections/SlotArray": "./dist/collections/SlotArray.js",
"./sync/Barrier": "./dist/sync/Barrier.js",
"./sync/Listeners": "./dist/sync/Listeners.js",
"./sync/NonConcurrent": "./dist/sync/NonConcurrent.js",
"./sync/Latest": "./dist/sync/Latest.js",
"./time/Date": "./dist/time/Date.js",
"./time/DateTime": "./dist/time/DateTime.js",
"./time/DateTimeRange": "./dist/time/DateTimeRange.js",
"./time/Duration": "./dist/time/Duration.js",
"./time/localization": "./dist/time/localization.js",
"./utils": "./dist/utils/utils.js",
"./utils/colors": "./dist/utils/colors.js",
"./dom/Context2d": "./dist/dom/Context2d.js",
"./dom/utils": "./dist/dom/utils.js",
"./graphQl/GraphQl": "./dist/graphQl/GraphQl.js",
"./graphQl/GraphQlError": "./dist/graphQl/GraphQlError.js",
"./data/Data": "./dist/data/Data.js",
"./data/MapType": "./dist/data/MapType.js",
"./data/ParseType": "./dist/data/ParseType.js",
"./data/parseTypes": "./dist/data/parseTypes.js"
},
"devDependencies": {
"eslint": "^8.45.0",
"vitest": "^1.1.3",
"prettier": "^3.2.4",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
}
}