-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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
46
{
"name": "@balena/node-qmp",
"version": "0.0.6",
"description": "Library for interfacing with QEMU using QMP protocol",
"author": "Balena.io Ltd <[email protected]>",
"contributors": [
"Joseph Kogut <[email protected]>",
"Alex Gonzalez <[email protected]>"
],
"files": [
"lib/**/*"
],
"scripts": {
"clean": "rm -rf ./lib",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p ./configs/tsconfig.esm.json && mv lib/esm/index.js lib/esm/index.mjs",
"build:cjs": "tsc -p ./configs/tsconfig.cjs.json",
"prepack": "npm run build",
"test": "jest"
},
"types": "./lib/cjs/types/index.ts",
"main": "./lib/cjs/index.js",
"exports": {
".": {
"import": {
"types": "./lib/esm/types/index.d.ts",
"default": "./lib/esm/index.mjs"
},
"require": {
"types": "./lib/cjs/types/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@types/node": "^18.11.10",
"babel-jest": "^29.5.0",
"jest": "^29.5.0"
},
"versionist": {
"publishedAt": "2023-12-19T22:08:16.978Z"
}
}