-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.16 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
54
55
56
57
{
"name": "zstore",
"version": "0.1.0",
"description": "JSON store",
"main": "dist/index.js",
"author": "Adnan Lahrech",
"license": "MIT",
"type": "module",
"scripts": {
"build": "tsup src/*.ts",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit --composite false",
"format": "prettier --write .",
"test": "mocha"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/chai": "^4.3.17",
"@types/mocha": "^10.0.7",
"@types/node": "^22.4.0",
"chai": "^5.1.1",
"chalk": "^5.3.0",
"mocha": "^10.7.3",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"tsup": "^8.2.4",
"tsx": "^4.17.0",
"typescript": "^5.5.4"
},
"dependencies": {
"zod": "^3.23.8"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"tsup": {
"dts": true,
"bundle": false,
"treeshake": true,
"target": "node18",
"format": [
"esm",
"cjs"
],
"entry": [
"src/**/*.ts"
]
},
"mocha": {
"useTsNode": true
}
}