-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.42 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
47
{
"name": "@rundown-studio/utils",
"version": "0.4.16",
"description": "Shared helper functions for the Rundown Studio project",
"license": "ISC",
"author": "Lukas Hermann <hey@lukashermann.dev>",
"repository": {
"type": "git",
"url": "git+https://github.com/rundown-studio/package-utils.git"
},
"type": "module",
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
},
"main": "dist/cjs/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:ci": "jest --ci",
"build": "rm -rf ./dist && npm run build:cjs && npm run build:esm",
"build:cjs": "tsc --module commonjs --outDir dist/cjs/ && echo '{\"type\": \"commonjs\"}' > dist/cjs/package.json",
"build:esm": "tsc --module esnext --outDir dist/esm/ && echo '{\"type\": \"module\"}' > dist/esm/package.json"
},
"devDependencies": {
"@eslint/js": "^9.5.0",
"@stylistic/eslint-plugin": "^2.2.1",
"@types/lodash": "^4.17.7",
"chai": "^5.1.1",
"eslint": "^9.5.0",
"globals": "^15.6.0",
"jest": "^29.7.0",
"typescript": "^5.4.5",
"typescript-eslint": "^8.0.0-alpha.45"
},
"dependencies": {
"@rundown-studio/consts": "^0.3.0",
"@rundown-studio/timeutils": "^0.5.8",
"@rundown-studio/types": "^0.5.1",
"date-fns": "^4.1.0",
"lodash": "^4.17.21"
}
}