-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.26 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
{
"name": "@efstajas/versioned-parser",
"version": "0.1.4",
"description": "A TypeScript-first utility for managing multiple versions of parse functions.",
"keywords": [
"schema",
"validation",
"typescript",
"zod",
"versioning"
],
"main": "lib/index.js",
"module": "./lib/index.mjs",
"exports": {
".": {
"types": "./index.d.ts",
"require": "./lib/index.js",
"import": "./lib/index.mjs"
},
"./package.json": "./package.json"
},
"files": [
"/lib",
"/index.d.ts"
],
"types": "./index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/efstajas/versioned-parser.git"
},
"author": "Georgios Jason Efstathiou",
"license": "Apache-2.0",
"scripts": {
"clean": "rm -rf lib/*",
"build": "npm run clean && npm run build:cjs && npm run build:esm",
"build:esm": "rollup --config ./configs/rollup.config.js --bundleConfigAsCjs",
"build:cjs": "tsc -p ./configs/tsconfig.cjs.json",
"build:types": "tsc -p ./configs/tsconfig.types.json",
"build:test": "tsc -p ./configs/tsconfig.test.json"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.2",
"rollup": "^3.28.1",
"tslib": "^2.6.2",
"typescript": "^5.1.6"
}
}