-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.12 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.12 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@daracl/datetimepicker",
"version": "0.0.13",
"sideEffects": false,
"description": "Dacacl Datetime picker",
"author": {
"name": "darainfo",
"email": "darainfosys@gmail.com",
"url": "https://www.moaview.com"
},
"license": "MIT",
"keywords": [
"@daracl/dateTimePicker",
"daracl-dateTimePicker",
"daracl.dateTimePicker",
"dateTimePicker",
"picker",
"daracl",
"javascript"
],
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"homepage": "https://github.com/daracl/ui-dateTimePicker",
"bugs": {
"url": "https://github.com/daracl/ui-dateTimePicker/issues",
"email": "darainfosys@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/daracl/ui-dateTimePicker.git"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./umd": {
"import": "./dist/daracl.tree.umd.js"
},
"./dist/": "./dist/",
"./style/": "./style/"
},
"files": [
"dist",
"style"
],
"prettier": {
"printWidth": 256,
"useTabs": false,
"tabWidth": 2,
"bracketSpacing": true,
"semi": true,
"singleQuote": false
},
"editor.formatOnSave": true,
"[javascript]": {
"editor.formatOnSave": false
},
"peerDependencies": {
"@daracl/core": "^0.0.5"
},
"devDependencies": {
"@daracl/core": "^0.0.5",
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.25.7",
"@babel/preset-typescript": "^7.21.4",
"@playwright/test": "^1.55.1",
"@types/node": "^20.1.0",
"cpx": "^1.5.0",
"eslint": "^8.40.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"material-icons": "^1.13.8",
"prettier": "^2.8.8",
"rimraf": "^6.0.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-visualizer": "^6.0.3",
"sass": "^1.80.2",
"typedoc": "^0.28.13",
"typescript": "^5.1.6",
"vite": "^5.4.0",
"vite-plugin-banner": "^0.7.1"
},
"scripts": {
"prepack": "yarn build",
"build": "yarn build:escjs && yarn build:umd && yarn mergenclean",
"build:umd": "vite build --config vite.config.umd.js --mode production && vite build --config vite.config.umd.js --mode development",
"build:escjs": "vite build --config vite.config.js --mode production && vite build --config vite.config.js --mode development",
"mergenclean": "yarn copy-dts && yarn build:tsc && yarn copy-unmin && yarn clean:unmin && yarn copy-html",
"build:tsc": "tsc --emitDeclarationOnly",
"dev": "vite",
"preview": "vite preview",
"docs:gen": "typedoc --tsconfig tsconfig.doc.json",
"dts:gen": "tsc src/index.ts --declaration --emitDeclarationOnly --outDir dist",
"test": "jest",
"pwtest": "playwright test",
"clean:unmin": "rimraf dist/unmin",
"copy-html": "cpx \"public/index.html\" dist",
"copy-unmin": "cpx \"dist/unmin/**.*\" dist",
"copy-dts": "cpx \"src/**/*.d.ts\" dist"
}
}