-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 860 Bytes
/
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
{
"name": "@choreography-ts/core",
"version": "1.0.0",
"description": "",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"clean": "rimraf dist",
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"test": "vitest run --silent",
"coverage": "vitest run --silent --coverage",
"typecheck": "tsc --noEmit"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.2.3",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"tsup": "^7.2.0",
"typescript": "^5.0.4"
},
"peerDependencies": {
"typescript": "^5.0.4"
},
"dependencies": {
"mitt": "^3.0.1"
}
}