-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.17 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
{
"name": "@hamsterbase/ham",
"version": "1.0.2",
"bin": {
"ham": "./bin/ham.js"
},
"files": [
"bin",
"dist",
"README.md"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"main": "./dist/exports/ham.cjs",
"types": "./dist/exports/ham.d.ts",
"type": "module",
"repository": "https://github.com/hamsterbase/ham.git",
"author": "monster <monster@hamsterbase.com>",
"scripts": {
"build": "node script/build.js",
"prepublishOnly": "node script/build.js",
"test": "vitest run"
},
"exports": {
".": {
"require": {
"types": "./dist/exports/ham.d.ts",
"default": "./dist/exports/ham.cjs"
},
"import": {
"types": "./dist/exports/ham.d.ts",
"default": "./dist/exports/ham.mjs"
}
}
},
"license": "MIT",
"devDependencies": {
"@types/cli-table": "^0.3.1",
"@types/tar": "^6.1.4",
"cac": "^6.7.14",
"cli-table": "^0.3.11",
"esbuild": "^0.17.18",
"typescript": "^5.0.4",
"vitest": "^0.31.0"
},
"dependencies": {
"@electron/rebuild": "^3.2.13",
"minimatch": "^9.0.0",
"tar": "^6.1.14"
}
}