-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.21 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
48
49
50
51
52
53
{
"name": "@autoplay/utils",
"version": "0.0.25",
"description": "Utilities designed for error management, parsing, and TypeScript domain modeling.",
"keywords": [],
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "esm/index.d.ts",
"exports": {
".": {
"import": {
"types": "./esm/index.d.ts",
"default": "./esm/index.js"
},
"require": {
"types": "./cjs/index.d.ts",
"default": "./cjs/index.js"
}
}
},
"scripts": {
"build": "tsc --build . && tsc --build tsconfig.cjs.json",
"clean": "rimraf *.tsbuildinfo cjs esm",
"test": "jest",
"prepare": "npm run clean && npm run build",
"prepack": "npm run prepare"
},
"files": [
"esm",
"cjs",
"src"
],
"author": "Cole Lawrence <cole@colelawrence.com>",
"repository": {
"type": "git",
"url": "https://github.com/autoplayhq/es-utils"
},
"license": "MIT",
"peerDependencies": {
"tslib": "^2.4",
"zod": "^3"
},
"devDependencies": {
"@jest/globals": "^28.1.3",
"@swc/core": "^1.2.220",
"@swc/jest": "^0.2.22",
"jest": "^28.1.3",
"rimraf": "^3.0.2",
"tslib": "^2.4",
"typescript": "^4.8.4",
"zod": "^3.19.1"
}
}