-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.53 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
{
"name": "@relagit/commits",
"version": "0.2.0",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/relagit/commits"
},
"author": "TheCommieAxolotl",
"description": "Utilities for handling commits under the Relational commit standard.",
"type": "module",
"main": "dist/index.cjs",
"license": "LGPL-3.0-or-later",
"module": "dist/index.js",
"packageManager": "[email protected]",
"keywords": [
"git",
"rela",
"relational",
"commits",
"commit",
"standard",
"util",
"utilities"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./bin.js": "./dist/bin.js",
"./index.js": "./dist/index.js"
},
"bin": {
"relational": "dist/bin.js",
"rela": "dist/bin.js"
},
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"test": "vitest"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^8.2.1",
"rollup": "^2.56.3",
"rollup-plugin-preserve-shebangs": "^0.2.0",
"thena": "^0.0.10",
"tslib": "^2.3.0",
"typescript": "^4.3.5",
"vite": "^4.4.7",
"vitest": "^0.33.0",
"vite-plugin-dts": "^3.4.0",
"vite-plugin-tsconfig-paths": "^1.3.1"
},
"files": [
"dist"
]
}