-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
64 lines (64 loc) · 1.49 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
{
"name": "@glazed/tile-loader",
"version": "0.2.1",
"author": "3Box Labs",
"license": "(Apache-2.0 OR MIT)",
"homepage": "https://github.com/ceramicstudio/js-glaze#readme",
"keywords": [
"ceramic",
"glaze"
],
"repository": {
"type": "git",
"url": "https://github.com/ceramicstudio/js-glaze",
"directory": "packages/tile-loader"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=14.14"
},
"sideEffects": false,
"scripts": {
"build:clean": "del dist",
"build:js": "swc src -d ./dist --config-file ../../.swcrc",
"build:types": "tsc --emitDeclarationOnly --skipLibCheck",
"build": "yarn build:clean && yarn build:types && yarn build:js",
"lint": "eslint src test --fix",
"test": "yarn node --experimental-vm-modules $(yarn bin jest)",
"test:ci": "yarn test --ci --coverage",
"prepare": "yarn build",
"prepublishOnly": "package-check"
},
"dependencies": {
"@ceramicnetwork/stream-tile": "^2.2.2",
"dataloader": "^2.1.0"
},
"devDependencies": {
"@ceramicnetwork/common": "^2.2.1",
"@ceramicnetwork/streamid": "^2.1.0"
},
"jest": {
"extensionsToTreatAsEsm": [
".ts"
],
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"transform": {
"^.+\\.(t|j)s$": [
"@swc/jest",
{
"root": "../.."
}
]
}
}
}