-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.46 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
{
"name": "git-goose",
"version": "0.5.3",
"description": "a mongoose plugin that enables git like change tracking",
"license": "MIT",
"author": "Jake Holland",
"homepage": "https://github.com/hollandjake/git-goose",
"repository": {
"type": "git",
"url": "git://github.com/hollandjake/git-goose.git"
},
"bugs": {
"url": "https://github.com/hollandjake/git-goose/issues"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"files": [
"dist",
"index.ts",
"lib"
],
"scripts": {
"build": "vite build",
"clean": "gts clean",
"clean:build": "pnpm clean && pnpm build",
"lint": "gts lint",
"lint:fix": "gts fix",
"test": "vitest run",
"test:watch": "vitest"
},
"types": "./dist/index.d.ts",
"dependencies": {
"mini-rfc6902": "^0.2.3",
"mongoose": ">=8.0.0"
},
"devDependencies": {
"@mnrendra/rollup-plugin-mixexport": "^1.2.0",
"@types/node": "^22.10.1",
"@vitest/coverage-istanbul": "^2.1.6",
"gts": "^5.3.1",
"mongodb-memory-server": "^10.1.2",
"prettier-plugin-organize-imports": "^4.1.0",
"rollup-plugin-esbuild": "^6.1.1",
"typescript": "^5.7.2",
"vite": "^6.0.1",
"vite-plugin-dts": "^4.3.0",
"vite-tsconfig-paths": "^5.1.3",
"vitest": "^2.1.6"
},
"keywords": [
"change tracking",
"commonjs",
"esm",
"git",
"history",
"mongoose",
"plugin",
"typescript"
],
"readme": "./README.md"
}