-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.05 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
{
"name": "@myboothmanager/common",
"version": "0.7.0-dev.4",
"author": "somni <[email protected]>",
"packageManager": "[email protected]",
"license": "PolyForm-Strict-1.0.0",
"private": true,
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"scripts": {
"build": "pnpm clean && pnpm build:esm && pnpm build:cjs",
"build:esm": "tsc -p tsconfig.build.esm.json && tsc-alias -p tsconfig.build.esm.json",
"build:cjs": "tsc -p tsconfig.build.cjs.json && tsc-alias -p tsconfig.build.cjs.json",
"clean": "rimraf ./dist",
"lint": "eslint .",
"test": "jest"
},
"files": [
"./dist"
],
"devDependencies": {
"@myboothmanager/dev-shared": "workspace:^",
"@tsconfig/node20": "^20.1.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.16.1",
"eslint": "^9.9.0",
"execa": "^9.3.1",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4",
"tsc-alias": "^1.8.10"
},
"dependencies": {
"currency-symbol-map": "^5.1.0"
}
}