-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.04 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.04 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
{
"name": "@zwave-js/waddle",
"publishConfig": {
"access": "public"
},
"description": "A cooperative task scheduler based on generator functions",
"version": "1.2.1",
"license": "MIT",
"type": "module",
"module": "build/index.js",
"exports": {
".": {
"import": "./build/esm/index.js",
"require": "./build/cjs/index.js"
},
"./package.json": "./package.json"
},
"files": [
"build/"
],
"scripts": {
"build": "tsc -p tsconfig.build.json && yarn build:cjs",
"build:cjs": "yarn esm2cjs --in build/esm --out build/cjs -l error -t node20",
"test": "vitest --run",
"release": "release-script"
},
"devDependencies": {
"@alcalzone/esm2cjs": "^1.4.1",
"@alcalzone/release-script": "^3.8.0",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"@tsconfig/node20": "^20.1.5",
"@types/node": "^20.17.47",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"vitest": "^3.1.3"
},
"dependencies": {
"alcalzone-shared": "^5.0.0"
},
"packageManager": "yarn@4.6.0"
}