-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.79 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "gist-database",
"version": "1.8.0",
"description": "Transform gist into your personal key/value data store. Pair this with Next.js and incremental static regeneration to add dynamic content to your static site. Built with TypeScript.",
"author": "Tim Mikeladze <[email protected]>",
"keywords": [
"gist",
"gist-database",
"gistdb",
"gist-db",
"gist key value store",
"simple key value",
"key value",
"github-database"
],
"repository": {
"type": "git",
"url": "https://github.com/TimMikeladze/gist-database.git"
},
"license": "MIT",
"files": [
"./dist"
],
"source": "src/index.ts",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"bin": "./dist/cli.module.js",
"scripts": {
"dev": "microbundle watch src/{index,cli}.ts --target node -f modern",
"build": "rm -rf dist && microbundle src/{index,cli}.ts",
"lint": "eslint --fix \"{src,__tests__}/**/*.+(ts|tsx|js|jsx)\" && prettier --write .",
"test": "yarn node --experimental-vm-modules $(yarn bin jest) --passWithNoTests",
"test:ci": "yarn test --ci --coverage",
"prepublishOnly": "yarn type-check && yarn lint && yarn test && yarn build",
"type-check": "tsc",
"release": "release-it",
"commit": "commit-it",
"cli": "yarn build && node dist/cli.modern.js"
},
"release-it": {
"git": {
"commitMessage": "🔖 | v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
}
},
"lint-staged": {
"**/*.{ts,js,jsx,tsx}": "eslint --fix",
"*": "prettier --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@types/cryptr": "4.0.1",
"@types/jest": "29.5.1",
"@types/node": "18.16.16",
"@typescript-eslint/eslint-plugin": "5.59.8",
"@typescript-eslint/parser": "5.59.8",
"commit-it": "0.0.11",
"dotenv": "16.1.1",
"eslint": "8.41.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-n": "15.7.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-typescript-sort-keys": "2.3.0",
"husky": "8.0.3",
"jest": "29.5.0",
"lint-staged": "13.2.2",
"microbundle": "0.15.1",
"prettier": "2.8.8",
"release-it": "15.10.3",
"ts-jest": "29.1.0",
"typescript": "5.0.4"
},
"dependencies": {
"buffer": "6.0.3",
"commander": "10.0.1",
"cross-fetch": "3.1.6",
"cryptr": "6.2.0",
"is-plain-obj": "4.1.0",
"msgpackr": "1.9.2",
"nanoid": "4.0.2"
},
"resolutions": {
"json5": ">=2.2.2"
}
}