-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 833 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 833 Bytes
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
{
"name": "@intimatemerger/im-core",
"version": "0.2.3",
"license": "MIT",
"main": "./cjs/index.js",
"types": "./cjs/index.d.js",
"files": [
"cjs",
"esm"
],
"repository": "git@github.com:IntimateMerger/im-core.git",
"scripts": {
"lint": "gts lint",
"clean": "gts clean",
"prebuild": "npm run lint",
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc --module CommonJS --outDir cjs",
"build:esm": "tsc --module ES6 --outDir esm",
"fix": "gts fix",
"prepare": "npm run build",
"test-server": "node ./test-server/start.js"
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"@koa/router": "^12.0.0",
"@types/node": "^18.11.18",
"gts": "^3.1.1",
"koa": "^2.14.2",
"koa-static": "^5.0.0",
"typescript": "^5.0.4"
}
}