-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.13 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
{
"name": "zod-xlsx",
"version": "0.0.0-semantic-release",
"license": "MIT",
"author": "Sidwebworks",
"description": "A xlsx based resource validator using Zod schemas",
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"types": "./dist/index.d.ts",
"scripts": {
"build": "NODE_ENV=production tsup --dts-resolve",
"dev": "NODE_ENV=development tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest --coverage",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"@commitlint/cli": "17.0.2",
"@commitlint/config-conventional": "17.0.2",
"@types/node": "17.0.38",
"c8": "^7.11.3",
"husky": "^7.0.0",
"prettier": "2.5.1",
"tsup": "6.0.1",
"typescript": "4.7.3",
"vitest": "0.12.6"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"peerDependencies": {
"xlsx": "^0.18.5",
"zod": "^3.17.3"
}
}