-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.92 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
77
78
{
"name": "@filedgr/filedgr-template-sdk",
"version": "1.0.0",
"description": "SDK to allow simple access to Filedgr attested data, using templates",
"main": "dist/index.js",
"module": "dist/index.m.js",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.m.js",
"require": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"package.json"
],
"scripts": {
"build": "rm -rf dist && microbundle --tsconfig tsconfig.json --no-sourcemap",
"dev": "nodemon -e js,ts --watch src --exec \"npm run build\"",
"format:fix": "prettier --write './**/*.ts'",
"test": "env NODE_ENV=test jest",
"precommit": "lint-staged",
"commit": "git-cz",
"semantic-release": "semantic-release --branches main"
},
"author": "Filedgr",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"cz-conventional-changelog": "^3.3.0",
"husky": "^4.3.8",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"microbundle": "^0.15.1",
"prettier": "^3.2.5",
"semantic-release": "22.0.2",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2"
},
"dependencies": {
"cross-fetch": "^4.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run test"
}
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Filedgr/filedgr-template-sdk.git"
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"bugs": {
"url": "https://github.com/Filedgr/filedgr-template-sdk/issues"
},
"homepage": "https://github.com/Filedgr/filedgr-template-sdk?tab=readme-ov-file",
"directories": {
"test": "test"
}
}