-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.31 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
{
"name": "@harnyk/chan",
"version": "0.1.1",
"private": false,
"homepage": "https://github.com/harnyk/chan",
"repository": {
"type": "git",
"url": "https://github.com/harnyk/chan.git"
},
"license": "WTFPL",
"author": "Mark <[email protected]>",
"exports": {
".": {
"require": "./dist/main.js",
"import": "./dist/main.mjs",
"types": "./dist/main.d.ts"
}
},
"main": "dist/main.js",
"module": "dist/main.mjs",
"types": "dist/main.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/main.ts --format cjs,esm --dts --clean --sourcemap",
"examples:tour-concurrency-2": "tsx ./src/examples/tour-concurrency-2.ts",
"examples:tour-concurrency-3": "tsx ./src/examples/tour-concurrency-3.ts",
"examples:tour-concurrency-4": "tsx ./src/examples/tour-concurrency-4.ts",
"examples:tour-concurrency-5": "tsx ./src/examples/tour-concurrency-5.ts",
"examples:timer": "tsx ./src/examples/timer.ts",
"prepublishOnly": "npm run build",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"ts-jest": "^29.1.5",
"tsup": "^8.1.0",
"tsx": "^4.16.2",
"typescript": "^5.5.3"
}
}