-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.62 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
{
"name": "@jvlk/fp-ts-remote-data",
"version": "1.1.0",
"description": "An fp-ts library to make it easy to work with remote data.",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"scripts": {
"build": "parcel build",
"docs": "docs-ts",
"format": "prettier -w src",
"prepare": "husky install",
"test": "jest",
"test:watch": "jest --watch",
"tsc": "tsc",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/jderochervlk/fp-ts-remote-data.git"
},
"keywords": [],
"author": "Josh Vlk",
"license": "MIT",
"bugs": {
"url": "https://github.com/jderochervlk/fp-ts-remote-data/issues"
},
"homepage": "https://github.com/jderochervlk/fp-ts-remote-data#readme",
"dependencies": {
"fp-ts": "^2.13.1",
"typescript": "^4.8.4"
},
"devDependencies": {
"@parcel/packager-ts": "^2.7.0",
"@parcel/transformer-typescript-types": "^2.7.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^11.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"@swc/core": "^1.3.14",
"@swc/jest": "^0.2.23",
"@types/jest": "^29.2.1",
"docs-ts": "^0.7.0",
"husky": "^8.0.0",
"jest": "^29.2.2",
"parcel": "^2.7.0",
"prettier": "^2.7.1",
"semantic-release": "^21.0.1",
"ts-node": "^10.9.1"
},
"peerDependencies": {
"fp-ts": "^2.13.1",
"typescript": "^4.8.4"
}
}