-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 900 Bytes
/
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
{
"name": "quran-quiz",
"version": "0.1.4",
"private": false,
"description": "A quiz game for the Quran",
"keywords": [
"quran",
"quiz"
],
"author": {
"name": "Zakiego",
"url": "https://zakiego.com"
},
"main": "index.js",
"license": "ISC",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/lodash": "^4.14.200",
"@types/node": "^20.8.10",
"bunchee": "^3.9.1",
"lodash": "^4.17.21",
"typescript": "^5.2.2",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^0.34.6",
"zod": "^3.22.4"
},
"exports": {
".": {
"module": "./dist/index.esm.js",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"types": "./dist/types/index.d.ts",
"scripts": {
"build": "bunchee",
"test": "vitest",
"release": "pnpm run build && changeset publish"
}
}