-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.85 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.85 KB
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
{
"name": "@intimatemerger-internal/im-core",
"version": "0.4.1",
"license": "MIT",
"main": "./cjs/index.js",
"module": "./esm/index.js",
"types": "./esm/index.d.ts",
"exports": {
".": {
"import": {
"types": "./esm/index.d.ts",
"default": "./esm/index.js"
},
"require": {
"types": "./cjs/index.d.ts",
"default": "./cjs/index.js"
}
},
"./esm": {
"types": "./esm/index.d.ts",
"default": "./esm/index.js"
},
"./esm/*": {
"types": "./esm/*.d.ts",
"default": "./esm/*.js"
},
"./cjs": {
"types": "./cjs/index.d.ts",
"default": "./cjs/index.js"
},
"./cjs/*": {
"types": "./cjs/*.d.ts",
"default": "./cjs/*.js"
},
"./package.json": "./package.json"
},
"files": [
"cjs",
"esm"
],
"repository": "git@github.com:IntimateMerger/im-core.git",
"scripts": {
"lint": "gts lint",
"clean": "gts clean",
"prebuild": "pnpm run lint",
"build": "pnpm run build:cjs && pnpm run build:esm",
"build:cjs": "tsc --project tsconfig.build.json --module CommonJS --outDir cjs",
"build:esm": "tsc --project tsconfig.build.json --module ES6 --outDir esm",
"fix": "gts fix",
"prepare": "pnpm run build",
"test-server": "node ./test-server/start.js",
"test": "pnpm run test:vitest",
"test:vitest": "vitest run",
"test:vitest:watch": "vitest",
"artifactregistry-login": "npx google-artifactregistry-auth"
},
"engines": {
"node": "24.14.1"
},
"devDependencies": {
"@koa/router": "15.4.0",
"@types/node": "25.5.0",
"@vitest/coverage-v8": "4.1.7",
"eslint": "10.1.0",
"gts": "7.0.0",
"jsdom": "25.0.1",
"koa": "3.1.2",
"koa-static": "5.0.0",
"typescript": "6.0.2",
"vite": "8.0.14",
"vitest": "4.1.7"
},
"packageManager": "pnpm@10.33.0"
}