-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.63 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
{
"author": "Transcend Inc.",
"name": "@transcend-io/persisted-state",
"description": "A type-friendly class that makes it easier to read/write state from local disk.",
"version": "1.0.4",
"homepage": "https://github.com/transcend-io/persisted-state",
"repository": {
"type": "git",
"url": "https://github.com/transcend-io/persisted-state.git"
},
"license": "MIT",
"main": "build/index",
"files": [
"build/**/*",
"package.json"
],
"scripts": {
"update:sdks": "yarn set version from sources && yarn sdks base",
"update:deps": "yarn upgrade-interactive && yarn update:sdks",
"build": "yarn tsc --build",
"clean": "yarn tsc --build --clean",
"lint": "yarn eslint src --ext .ts",
"prepublish": "yarn build",
"test": "yarn mocha './src/**/*.test.ts'"
},
"dependencies": {
"@transcend-io/type-utils": "^1.2.2",
"fp-ts": "^2.16.1",
"io-ts": "^2.2.21",
"mkdirp": "^1.0.4"
},
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/mkdirp": "^1.0.2",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.3",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@yarnpkg/sdks": "^3.1.0",
"chai": "^4.3.10",
"depcheck": "^1.4.7",
"eslint": "^8.55.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsdoc": "^46.9.0",
"mocha": "^10.2.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"packageManager": "[email protected]"
}