-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 951 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
{
"name": "universal-calendar-js",
"version": "1.1.1",
"description": "A grid",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"grid",
"calendar",
"calendar drag n drop"
],
"author": "Amirkian Adl <amircc1200@gmail.com>",
"homepage": "https://github.com/amirkian007/universal-calendar-js#readme",
"license": "MIT",
"type": "module",
"files": [
"dist"
],
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amirkian007/universal-calendar-js.git",
"directory": "packages/shared-grid"
},
"bugs": {
"url": "https://github.com/amirkian007/universal-calendar-js/issues"
},
"scripts": {
"build": "tsup src/index.ts --dts",
"dev": "vite ./demo"
},
"devDependencies": {
"tsup": "^8.0.2",
"typescript": "^5.4.3",
"vite": "^4.0.4"
}
}