forked from hellobloom/ssi-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.78 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
{
"name": "@bloomprotocol/waci-core",
"description": "WACI TypeScript Types",
"version": "0.1.2",
"author": "Bloom Team <team@bloom.co>",
"license": "Apache-2.0",
"repository": "https://github.com/hellobloom/ssi-sdk/tree/main/packages/waci-core",
"main": "dist/index.js",
"module": "dist/core.esm.js",
"typings": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist",
"src"
],
"engines": {
"node": ">=14"
},
"scripts": {
"build": "dts build --target node",
"test": "dts test --passWithNoTests",
"lint": "eslint src --format table --ext .ts,.tsx,.js,.jsx",
"lint:fix": "npm run lint -- --fix",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run test"
},
"devDependencies": {
"@bloomprotocol/eslint-config": "2.0.0-beta.0",
"@bloomprotocol/prettier-config": "2.0.0-beta.0",
"dts-cli": "^1.6.0",
"ts-node": "^9.1.1",
"tslib": "^2.2.0"
},
"resolutions": {
"**/@typescript-eslint/eslint-plugin": "^4.23.0",
"**/@typescript-eslint/parser": "^4.23.0",
"**/eslint": "^7.26.0",
"**/eslint-config-airbnb-typescript": "^12.3.1",
"**/eslint-config-prettier": "^7.2.0",
"**/eslint-plugin-import": "^2.23.0",
"**/eslint-plugin-jsx-a11y": "^6.4.1",
"**/eslint-plugin-prettier": "^3.4.0",
"**/eslint-plugin-react": "^7.23.2",
"**/eslint-plugin-react-hooks": "^4.2.0",
"**/jest": "^26.6.3",
"**/ts-jest": "^26.4.4",
"**/prettier": "^2.3.0",
"**/typescript": "^4.3.2"
},
"size-limit": [
{
"path": "dist/waci-core.cjs.production.min.js",
"limit": "1 B"
},
{
"path": "dist/waci-core.esm.js",
"limit": "1 B"
}
],
"dependencies": {
"jest": "^29.1.2",
"jest-environment-node": "^29.1.2",
"ts-jest": "^29.0.3"
}
}